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 | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 17 | # Needed by build/make/core/Makefile. |
| 18 | RECOVERY_API_VERSION := 3 |
| 19 | RECOVERY_FSTAB_VERSION := 2 |
| 20 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 21 | # libfusesideload (static library) |
| 22 | # =============================== |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 23 | include $(CLEAR_VARS) |
Tao Bao | 0d4e002 | 2015-07-19 08:40:37 -0700 | [diff] [blame] | 24 | LOCAL_SRC_FILES := fuse_sideload.cpp |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 25 | LOCAL_CLANG := true |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 26 | LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter -Werror |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 27 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 28 | LOCAL_MODULE := libfusesideload |
Josh Gao | 073164f | 2016-08-05 15:59:05 -0700 | [diff] [blame] | 29 | LOCAL_STATIC_LIBRARIES := libcutils libc libcrypto |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 30 | include $(BUILD_STATIC_LIBRARY) |
| 31 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 32 | # libmounts (static library) |
| 33 | # =============================== |
| 34 | include $(CLEAR_VARS) |
| 35 | LOCAL_SRC_FILES := mounts.cpp |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 36 | LOCAL_CFLAGS := \ |
| 37 | -Wall \ |
| 38 | -Werror |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 39 | LOCAL_MODULE := libmounts |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 40 | LOCAL_STATIC_LIBRARIES := libbase |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 41 | include $(BUILD_STATIC_LIBRARY) |
| 42 | |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 43 | # librecovery (static library) |
| 44 | # =============================== |
| 45 | include $(CLEAR_VARS) |
| 46 | LOCAL_SRC_FILES := \ |
| 47 | install.cpp |
Tao Bao | b24510c | 2017-04-20 17:54:27 -0700 | [diff] [blame] | 48 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 49 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tao Bao | 7fdcb19 | 2017-04-12 23:52:20 -0700 | [diff] [blame] | 50 | |
| 51 | ifeq ($(AB_OTA_UPDATER),true) |
| 52 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 53 | endif |
| 54 | |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 55 | LOCAL_MODULE := librecovery |
| 56 | LOCAL_STATIC_LIBRARIES := \ |
| 57 | libminui \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 58 | libvintf_recovery \ |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 59 | libcrypto_utils \ |
| 60 | libcrypto \ |
| 61 | libbase |
| 62 | |
| 63 | include $(BUILD_STATIC_LIBRARY) |
| 64 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 65 | # recovery (static executable) |
| 66 | # =============================== |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 67 | include $(CLEAR_VARS) |
| 68 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 69 | LOCAL_SRC_FILES := \ |
Doug Zongker | 945fc68 | 2014-07-10 10:50:39 -0700 | [diff] [blame] | 70 | adb_install.cpp \ |
Elliott Hughes | 9e7ae8a | 2015-04-09 13:40:31 -0700 | [diff] [blame] | 71 | asn1_decoder.cpp \ |
Elliott Hughes | 9e7ae8a | 2015-04-09 13:40:31 -0700 | [diff] [blame] | 72 | device.cpp \ |
Tao Bao | 0d4e002 | 2015-07-19 08:40:37 -0700 | [diff] [blame] | 73 | fuse_sdcard_provider.cpp \ |
Elliott Hughes | 9e7ae8a | 2015-04-09 13:40:31 -0700 | [diff] [blame] | 74 | recovery.cpp \ |
| 75 | roots.cpp \ |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 76 | rotate_logs.cpp \ |
Elliott Hughes | 9e7ae8a | 2015-04-09 13:40:31 -0700 | [diff] [blame] | 77 | screen_ui.cpp \ |
| 78 | ui.cpp \ |
| 79 | verifier.cpp \ |
Tao Bao | 337db14 | 2015-08-20 14:52:57 -0700 | [diff] [blame] | 80 | wear_ui.cpp \ |
Prashant Malani | 9020e0f | 2016-03-11 11:57:10 -0800 | [diff] [blame] | 81 | wear_touch.cpp \ |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 82 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 83 | LOCAL_MODULE := recovery |
| 84 | |
| 85 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 86 | |
Tao Bao | f683512 | 2015-10-27 21:53:18 -0700 | [diff] [blame] | 87 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
Ji-Hwan Lee | b9afc2b | 2014-06-19 02:02:50 +0900 | [diff] [blame] | 88 | ifeq ($(HOST_OS),linux) |
| 89 | LOCAL_REQUIRED_MODULES := mkfs.f2fs |
| 90 | endif |
Tao Bao | f683512 | 2015-10-27 21:53:18 -0700 | [diff] [blame] | 91 | endif |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 92 | |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 93 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tianjie Xu | 17e316c | 2016-09-28 11:42:17 -0700 | [diff] [blame] | 94 | LOCAL_CFLAGS += -Wno-unused-parameter -Werror |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 95 | LOCAL_CLANG := true |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 96 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 97 | LOCAL_C_INCLUDES += \ |
| 98 | system/vold \ |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 99 | system/core/adb \ |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 100 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 101 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 102 | librecovery \ |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 103 | libbatterymonitor \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 104 | libbootloader_message \ |
Alex Deymo | 3165366 | 2017-01-11 14:02:13 -0800 | [diff] [blame] | 105 | libext4_utils \ |
Alex Deymo | 67f3aa8 | 2017-01-11 14:38:20 -0800 | [diff] [blame] | 106 | libsparse \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 107 | libziparchive \ |
| 108 | libotautil \ |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 109 | libmounts \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 110 | libz \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 111 | libminadbd \ |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 112 | libfusesideload \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 113 | libminui \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 114 | libpng \ |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 115 | libfs_mgr \ |
Josh Gao | 073164f | 2016-08-05 15:59:05 -0700 | [diff] [blame] | 116 | libcrypto_utils \ |
| 117 | libcrypto \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 118 | libvintf_recovery \ |
| 119 | libvintf \ |
| 120 | libtinyxml2 \ |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 121 | libbase \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 122 | libcutils \ |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 123 | libutils \ |
Ying Wang | 4e21482 | 2013-04-09 21:41:29 -0700 | [diff] [blame] | 124 | liblog \ |
Kenny Root | 7eb7567 | 2012-10-16 10:47:27 -0700 | [diff] [blame] | 125 | libselinux \ |
Stephen Hines | 91eb721 | 2012-08-23 15:20:16 -0700 | [diff] [blame] | 126 | libm \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 127 | libc |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 128 | |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 129 | LOCAL_HAL_STATIC_LIBRARIES := libhealthd |
| 130 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 131 | ifeq ($(AB_OTA_UPDATER),true) |
| 132 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 133 | endif |
| 134 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 135 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 136 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 137 | ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 138 | LOCAL_SRC_FILES += default_device.cpp |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 139 | else |
| 140 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 141 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 142 | |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 143 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
| 144 | LOCAL_REQUIRED_MODULES := recovery-persist recovery-refresh |
| 145 | endif |
| 146 | |
| 147 | include $(BUILD_EXECUTABLE) |
| 148 | |
| 149 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 150 | # =============================== |
| 151 | include $(CLEAR_VARS) |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 152 | LOCAL_SRC_FILES := \ |
| 153 | recovery-persist.cpp \ |
| 154 | rotate_logs.cpp |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 155 | LOCAL_MODULE := recovery-persist |
| 156 | LOCAL_SHARED_LIBRARIES := liblog libbase |
| 157 | LOCAL_CFLAGS := -Werror |
| 158 | LOCAL_INIT_RC := recovery-persist.rc |
| 159 | include $(BUILD_EXECUTABLE) |
| 160 | |
| 161 | # recovery-refresh (system partition dynamic executable run at init) |
| 162 | # =============================== |
| 163 | include $(CLEAR_VARS) |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 164 | LOCAL_SRC_FILES := \ |
| 165 | recovery-refresh.cpp \ |
| 166 | rotate_logs.cpp |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 167 | LOCAL_MODULE := recovery-refresh |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 168 | LOCAL_SHARED_LIBRARIES := liblog libbase |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 169 | LOCAL_CFLAGS := -Werror |
| 170 | LOCAL_INIT_RC := recovery-refresh.rc |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 171 | include $(BUILD_EXECUTABLE) |
| 172 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 173 | # libverifier (static library) |
| 174 | # =============================== |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 175 | include $(CLEAR_VARS) |
| 176 | LOCAL_MODULE := libverifier |
| 177 | LOCAL_MODULE_TAGS := tests |
| 178 | LOCAL_SRC_FILES := \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 179 | asn1_decoder.cpp \ |
Tao Bao | d7bf82e | 2017-03-18 09:24:11 -0700 | [diff] [blame] | 180 | verifier.cpp |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 181 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 182 | libcrypto_utils \ |
| 183 | libcrypto \ |
| 184 | libbase |
Tianjie Xu | 17e316c | 2016-09-28 11:42:17 -0700 | [diff] [blame] | 185 | LOCAL_CFLAGS := -Werror |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 186 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 187 | |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 188 | include \ |
| 189 | $(LOCAL_PATH)/applypatch/Android.mk \ |
Alex Deymo | fb00d82 | 2016-11-08 15:46:07 -0800 | [diff] [blame] | 190 | $(LOCAL_PATH)/boot_control/Android.mk \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 191 | $(LOCAL_PATH)/bootloader_message/Android.mk \ |
| 192 | $(LOCAL_PATH)/edify/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 193 | $(LOCAL_PATH)/minadbd/Android.mk \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 194 | $(LOCAL_PATH)/minui/Android.mk \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 195 | $(LOCAL_PATH)/otafault/Android.mk \ |
Tianjie Xu | 8176cf2 | 2016-10-18 14:13:07 -0700 | [diff] [blame] | 196 | $(LOCAL_PATH)/otautil/Android.mk \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 197 | $(LOCAL_PATH)/tests/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 198 | $(LOCAL_PATH)/tools/Android.mk \ |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 199 | $(LOCAL_PATH)/uncrypt/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 200 | $(LOCAL_PATH)/updater/Android.mk \ |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 201 | $(LOCAL_PATH)/update_verifier/Android.mk \ |