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 | 20126e1 | 2017-04-26 12:30:46 -0700 | [diff] [blame] | 25 | LOCAL_CFLAGS := -Wall -Werror |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 26 | LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 27 | LOCAL_MODULE := libfusesideload |
Tao Bao | ed13819 | 2017-05-01 22:30:39 -0700 | [diff] [blame] | 28 | LOCAL_STATIC_LIBRARIES := \ |
| 29 | libcrypto \ |
| 30 | libbase |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 31 | include $(BUILD_STATIC_LIBRARY) |
| 32 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 33 | # libmounts (static library) |
| 34 | # =============================== |
| 35 | include $(CLEAR_VARS) |
| 36 | LOCAL_SRC_FILES := mounts.cpp |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 37 | LOCAL_CFLAGS := \ |
| 38 | -Wall \ |
| 39 | -Werror |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 40 | LOCAL_MODULE := libmounts |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 41 | LOCAL_STATIC_LIBRARIES := libbase |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 42 | include $(BUILD_STATIC_LIBRARY) |
| 43 | |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 44 | # librecovery (static library) |
| 45 | # =============================== |
| 46 | include $(CLEAR_VARS) |
| 47 | LOCAL_SRC_FILES := \ |
| 48 | install.cpp |
Tao Bao | b24510c | 2017-04-20 17:54:27 -0700 | [diff] [blame] | 49 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 50 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tao Bao | 7fdcb19 | 2017-04-12 23:52:20 -0700 | [diff] [blame] | 51 | |
| 52 | ifeq ($(AB_OTA_UPDATER),true) |
| 53 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 54 | endif |
| 55 | |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 56 | LOCAL_MODULE := librecovery |
| 57 | LOCAL_STATIC_LIBRARIES := \ |
| 58 | libminui \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 59 | libvintf_recovery \ |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 60 | libcrypto_utils \ |
| 61 | libcrypto \ |
| 62 | libbase |
| 63 | |
| 64 | include $(BUILD_STATIC_LIBRARY) |
| 65 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 66 | # recovery (static executable) |
| 67 | # =============================== |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 68 | include $(CLEAR_VARS) |
| 69 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 70 | LOCAL_SRC_FILES := \ |
Doug Zongker | 945fc68 | 2014-07-10 10:50:39 -0700 | [diff] [blame] | 71 | adb_install.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 \ |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 79 | vr_ui.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 |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 95 | |
Tao Bao | 4521b70 | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 96 | ifneq ($(TARGET_RECOVERY_UI_MARGIN_HEIGHT),) |
| 97 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_HEIGHT=$(TARGET_RECOVERY_UI_MARGIN_HEIGHT) |
| 98 | else |
| 99 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_HEIGHT=0 |
| 100 | endif |
| 101 | |
| 102 | ifneq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 103 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_WIDTH=$(TARGET_RECOVERY_UI_MARGIN_WIDTH) |
| 104 | else |
| 105 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_WIDTH=0 |
| 106 | endif |
| 107 | |
Luke Song | 9d4839c | 2017-06-23 14:33:46 -0700 | [diff] [blame] | 108 | ifneq ($(TARGET_RECOVERY_UI_VR_STEREO_OFFSET),) |
| 109 | LOCAL_CFLAGS += -DRECOVERY_UI_VR_STEREO_OFFSET=$(TARGET_RECOVERY_UI_VR_STEREO_OFFSET) |
| 110 | else |
| 111 | LOCAL_CFLAGS += -DRECOVERY_UI_VR_STEREO_OFFSET=0 |
| 112 | endif |
| 113 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 114 | LOCAL_C_INCLUDES += \ |
| 115 | system/vold \ |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 116 | |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 117 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 118 | librecovery \ |
Tao Bao | b168f5f | 2017-04-16 15:22:13 -0700 | [diff] [blame] | 119 | libverifier \ |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 120 | libbatterymonitor \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 121 | libbootloader_message \ |
Alex Deymo | 3165366 | 2017-01-11 14:02:13 -0800 | [diff] [blame] | 122 | libext4_utils \ |
Alex Deymo | 67f3aa8 | 2017-01-11 14:38:20 -0800 | [diff] [blame] | 123 | libsparse \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 124 | libziparchive \ |
| 125 | libotautil \ |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 126 | libmounts \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 127 | libz \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 128 | libminadbd \ |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 129 | libfusesideload \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 130 | libminui \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 131 | libpng \ |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 132 | libfs_mgr \ |
Josh Gao | 073164f | 2016-08-05 15:59:05 -0700 | [diff] [blame] | 133 | libcrypto_utils \ |
| 134 | libcrypto \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 135 | libvintf_recovery \ |
| 136 | libvintf \ |
| 137 | libtinyxml2 \ |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 138 | libbase \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 139 | libcutils \ |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 140 | libutils \ |
Ying Wang | 4e21482 | 2013-04-09 21:41:29 -0700 | [diff] [blame] | 141 | liblog \ |
Kenny Root | 7eb7567 | 2012-10-16 10:47:27 -0700 | [diff] [blame] | 142 | libselinux \ |
Stephen Hines | 91eb721 | 2012-08-23 15:20:16 -0700 | [diff] [blame] | 143 | libm \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 144 | libc |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 145 | |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 146 | LOCAL_HAL_STATIC_LIBRARIES := libhealthd |
| 147 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 148 | ifeq ($(AB_OTA_UPDATER),true) |
| 149 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 150 | endif |
| 151 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 152 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 153 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 154 | ifeq ($(TARGET_RECOVERY_UI_LIB),) |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 155 | LOCAL_SRC_FILES += default_device.cpp |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 156 | else |
| 157 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 158 | endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 159 | |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 160 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
| 161 | LOCAL_REQUIRED_MODULES := recovery-persist recovery-refresh |
| 162 | endif |
| 163 | |
| 164 | include $(BUILD_EXECUTABLE) |
| 165 | |
| 166 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 167 | # =============================== |
| 168 | include $(CLEAR_VARS) |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 169 | LOCAL_SRC_FILES := \ |
| 170 | recovery-persist.cpp \ |
| 171 | rotate_logs.cpp |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 172 | LOCAL_MODULE := recovery-persist |
| 173 | LOCAL_SHARED_LIBRARIES := liblog libbase |
| 174 | LOCAL_CFLAGS := -Werror |
| 175 | LOCAL_INIT_RC := recovery-persist.rc |
| 176 | include $(BUILD_EXECUTABLE) |
| 177 | |
| 178 | # recovery-refresh (system partition dynamic executable run at init) |
| 179 | # =============================== |
| 180 | include $(CLEAR_VARS) |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 181 | LOCAL_SRC_FILES := \ |
| 182 | recovery-refresh.cpp \ |
| 183 | rotate_logs.cpp |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 184 | LOCAL_MODULE := recovery-refresh |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 185 | LOCAL_SHARED_LIBRARIES := liblog libbase |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 186 | LOCAL_CFLAGS := -Werror |
| 187 | LOCAL_INIT_RC := recovery-refresh.rc |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 188 | include $(BUILD_EXECUTABLE) |
| 189 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 190 | # libverifier (static library) |
| 191 | # =============================== |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 192 | include $(CLEAR_VARS) |
| 193 | LOCAL_MODULE := libverifier |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 194 | LOCAL_SRC_FILES := \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 195 | asn1_decoder.cpp \ |
Tao Bao | d7bf82e | 2017-03-18 09:24:11 -0700 | [diff] [blame] | 196 | verifier.cpp |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 197 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 198 | libcrypto_utils \ |
| 199 | libcrypto \ |
| 200 | libbase |
Tianjie Xu | 17e316c | 2016-09-28 11:42:17 -0700 | [diff] [blame] | 201 | LOCAL_CFLAGS := -Werror |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 202 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 203 | |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 204 | # vr headset default device |
| 205 | # =============================== |
| 206 | include $(CLEAR_VARS) |
| 207 | |
| 208 | LOCAL_SRC_FILES := vr_device.cpp |
| 209 | |
| 210 | # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk |
| 211 | LOCAL_MODULE := librecovery_ui_vr |
| 212 | |
| 213 | include $(BUILD_STATIC_LIBRARY) |
| 214 | |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 215 | include \ |
| 216 | $(LOCAL_PATH)/applypatch/Android.mk \ |
Alex Deymo | fb00d82 | 2016-11-08 15:46:07 -0800 | [diff] [blame] | 217 | $(LOCAL_PATH)/boot_control/Android.mk \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 218 | $(LOCAL_PATH)/edify/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 219 | $(LOCAL_PATH)/minadbd/Android.mk \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 220 | $(LOCAL_PATH)/minui/Android.mk \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 221 | $(LOCAL_PATH)/otafault/Android.mk \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 222 | $(LOCAL_PATH)/tests/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 223 | $(LOCAL_PATH)/tools/Android.mk \ |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 224 | $(LOCAL_PATH)/uncrypt/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 225 | $(LOCAL_PATH)/updater/Android.mk \ |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 226 | $(LOCAL_PATH)/update_verifier/Android.mk \ |