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