Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 1 | # Copyright (C) 2007 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 14 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 17 | # libfusesideload (static library) |
| 18 | # =============================== |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 19 | include $(CLEAR_VARS) |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 20 | |
Tao Bao | 0d4e002 | 2015-07-19 08:40:37 -0700 | [diff] [blame] | 21 | LOCAL_SRC_FILES := fuse_sideload.cpp |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 22 | LOCAL_CLANG := true |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 23 | LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter |
| 24 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 25 | LOCAL_MODULE := libfusesideload |
Mattias Nissler | 452df6d | 2016-04-04 16:17:01 +0200 | [diff] [blame] | 26 | LOCAL_STATIC_LIBRARIES := libcutils libc libcrypto_static |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 27 | include $(BUILD_STATIC_LIBRARY) |
| 28 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 29 | # recovery (static executable) |
| 30 | # =============================== |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 31 | include $(CLEAR_VARS) |
| 32 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 33 | LOCAL_SRC_FILES := \ |
Doug Zongker | 945fc68 | 2014-07-10 10:50:39 -0700 | [diff] [blame] | 34 | adb_install.cpp \ |
Elliott Hughes | 9e7ae8a | 2015-04-09 13:40:31 -0700 | [diff] [blame] | 35 | asn1_decoder.cpp \ |
| 36 | bootloader.cpp \ |
| 37 | device.cpp \ |
Tao Bao | 0d4e002 | 2015-07-19 08:40:37 -0700 | [diff] [blame] | 38 | fuse_sdcard_provider.cpp \ |
Elliott Hughes | 9e7ae8a | 2015-04-09 13:40:31 -0700 | [diff] [blame] | 39 | install.cpp \ |
| 40 | recovery.cpp \ |
| 41 | roots.cpp \ |
| 42 | screen_ui.cpp \ |
| 43 | ui.cpp \ |
| 44 | verifier.cpp \ |
Tao Bao | 337db14 | 2015-08-20 14:52:57 -0700 | [diff] [blame] | 45 | wear_ui.cpp \ |
Prashant Malani | 9020e0f | 2016-03-11 11:57:10 -0800 | [diff] [blame] | 46 | wear_touch.cpp \ |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 47 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 48 | LOCAL_MODULE := recovery |
| 49 | |
| 50 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 51 | |
Tao Bao | f683512 | 2015-10-27 21:53:18 -0700 | [diff] [blame] | 52 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
Ji-Hwan Lee | b9afc2b | 2014-06-19 02:02:50 +0900 | [diff] [blame] | 53 | ifeq ($(HOST_OS),linux) |
| 54 | LOCAL_REQUIRED_MODULES := mkfs.f2fs |
| 55 | endif |
Tao Bao | f683512 | 2015-10-27 21:53:18 -0700 | [diff] [blame] | 56 | endif |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 57 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 58 | RECOVERY_API_VERSION := 3 |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 59 | RECOVERY_FSTAB_VERSION := 2 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 60 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 61 | LOCAL_CFLAGS += -Wno-unused-parameter |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 62 | LOCAL_CLANG := true |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 63 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 64 | LOCAL_C_INCLUDES += \ |
| 65 | system/vold \ |
| 66 | system/extras/ext4_utils \ |
| 67 | system/core/adb \ |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 68 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 69 | LOCAL_STATIC_LIBRARIES := \ |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 70 | libbatterymonitor \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 71 | libext4_utils_static \ |
Joe Onorato | 4eeb379 | 2012-07-23 19:14:30 -0700 | [diff] [blame] | 72 | libsparse_static \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 73 | libminzip \ |
| 74 | libz \ |
| 75 | libmtdutils \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 76 | libminadbd \ |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 77 | libfusesideload \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 78 | libminui \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 79 | libpng \ |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 80 | libfs_mgr \ |
Mattias Nissler | 452df6d | 2016-04-04 16:17:01 +0200 | [diff] [blame] | 81 | libcrypto_utils_static \ |
| 82 | libcrypto_static \ |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 83 | libbase \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 84 | libcutils \ |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 85 | libutils \ |
Ying Wang | 4e21482 | 2013-04-09 21:41:29 -0700 | [diff] [blame] | 86 | liblog \ |
Kenny Root | 7eb7567 | 2012-10-16 10:47:27 -0700 | [diff] [blame] | 87 | libselinux \ |
Stephen Hines | 91eb721 | 2012-08-23 15:20:16 -0700 | [diff] [blame] | 88 | libm \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 89 | libc |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 90 | |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 91 | LOCAL_HAL_STATIC_LIBRARIES := libhealthd |
| 92 | |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 93 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 94 | LOCAL_CFLAGS += -DUSE_EXT4 |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 95 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 96 | LOCAL_STATIC_LIBRARIES += libext4_utils_static libz |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 97 | endif |
| 98 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 99 | ifeq ($(AB_OTA_UPDATER),true) |
| 100 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 101 | endif |
| 102 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 103 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 104 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 105 | ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 106 | LOCAL_SRC_FILES += default_device.cpp |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 107 | else |
| 108 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 109 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 110 | |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 111 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
| 112 | LOCAL_REQUIRED_MODULES := recovery-persist recovery-refresh |
| 113 | endif |
| 114 | |
| 115 | include $(BUILD_EXECUTABLE) |
| 116 | |
| 117 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 118 | # =============================== |
| 119 | include $(CLEAR_VARS) |
| 120 | LOCAL_SRC_FILES := recovery-persist.cpp |
| 121 | LOCAL_MODULE := recovery-persist |
| 122 | LOCAL_SHARED_LIBRARIES := liblog libbase |
| 123 | LOCAL_CFLAGS := -Werror |
| 124 | LOCAL_INIT_RC := recovery-persist.rc |
| 125 | include $(BUILD_EXECUTABLE) |
| 126 | |
| 127 | # recovery-refresh (system partition dynamic executable run at init) |
| 128 | # =============================== |
| 129 | include $(CLEAR_VARS) |
| 130 | LOCAL_SRC_FILES := recovery-refresh.cpp |
| 131 | LOCAL_MODULE := recovery-refresh |
| 132 | LOCAL_SHARED_LIBRARIES := liblog |
| 133 | LOCAL_CFLAGS := -Werror |
| 134 | LOCAL_INIT_RC := recovery-refresh.rc |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 135 | include $(BUILD_EXECUTABLE) |
| 136 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 137 | # libverifier (static library) |
| 138 | # =============================== |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 139 | include $(CLEAR_VARS) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 140 | LOCAL_CLANG := true |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 141 | LOCAL_MODULE := libverifier |
| 142 | LOCAL_MODULE_TAGS := tests |
| 143 | LOCAL_SRC_FILES := \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 144 | asn1_decoder.cpp \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 145 | verifier.cpp \ |
| 146 | ui.cpp |
Mattias Nissler | 452df6d | 2016-04-04 16:17:01 +0200 | [diff] [blame] | 147 | LOCAL_STATIC_LIBRARIES := libcrypto_utils_static libcrypto_static |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 148 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 149 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 150 | include $(LOCAL_PATH)/minui/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 151 | $(LOCAL_PATH)/minzip/Android.mk \ |
| 152 | $(LOCAL_PATH)/minadbd/Android.mk \ |
| 153 | $(LOCAL_PATH)/mtdutils/Android.mk \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 154 | $(LOCAL_PATH)/tests/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 155 | $(LOCAL_PATH)/tools/Android.mk \ |
| 156 | $(LOCAL_PATH)/edify/Android.mk \ |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 157 | $(LOCAL_PATH)/uncrypt/Android.mk \ |
Jed Estep | a7b9a46 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 158 | $(LOCAL_PATH)/otafault/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 159 | $(LOCAL_PATH)/updater/Android.mk \ |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 160 | $(LOCAL_PATH)/update_verifier/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 161 | $(LOCAL_PATH)/applypatch/Android.mk |