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 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 21 | # libmounts (static library) |
| 22 | # =============================== |
| 23 | include $(CLEAR_VARS) |
| 24 | LOCAL_SRC_FILES := mounts.cpp |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 25 | LOCAL_CFLAGS := \ |
| 26 | -Wall \ |
| 27 | -Werror |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 28 | LOCAL_MODULE := libmounts |
Tao Bao | 5f85d1f | 2017-03-28 21:12:36 -0700 | [diff] [blame] | 29 | LOCAL_STATIC_LIBRARIES := libbase |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 30 | include $(BUILD_STATIC_LIBRARY) |
| 31 | |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 32 | # librecovery (static library) |
| 33 | # =============================== |
| 34 | include $(CLEAR_VARS) |
| 35 | LOCAL_SRC_FILES := \ |
| 36 | install.cpp |
Tao Bao | b24510c | 2017-04-20 17:54:27 -0700 | [diff] [blame] | 37 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 38 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
Tao Bao | 7fdcb19 | 2017-04-12 23:52:20 -0700 | [diff] [blame] | 39 | |
| 40 | ifeq ($(AB_OTA_UPDATER),true) |
| 41 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 42 | endif |
| 43 | |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 44 | LOCAL_MODULE := librecovery |
| 45 | LOCAL_STATIC_LIBRARIES := \ |
| 46 | libminui \ |
Tao Bao | cfe53c2 | 2017-10-03 14:37:21 -0700 | [diff] [blame] | 47 | libotautil \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 48 | libvintf_recovery \ |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 49 | libcrypto_utils \ |
| 50 | libcrypto \ |
Elliott Hughes | e1bb7a5 | 2017-06-28 08:00:17 -0700 | [diff] [blame] | 51 | libbase \ |
| 52 | libziparchive \ |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 53 | |
| 54 | include $(BUILD_STATIC_LIBRARY) |
| 55 | |
Tianjie Xu | 2b3f800 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 56 | # librecovery_ui (static library) |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 57 | # =============================== |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 58 | include $(CLEAR_VARS) |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 59 | LOCAL_SRC_FILES := \ |
Elliott Hughes | 9e7ae8a | 2015-04-09 13:40:31 -0700 | [diff] [blame] | 60 | screen_ui.cpp \ |
| 61 | ui.cpp \ |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 62 | vr_ui.cpp \ |
Tianjie Xu | 2b3f800 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 63 | wear_ui.cpp |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 64 | |
Tianjie Xu | 2b3f800 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 65 | LOCAL_CFLAGS := -Wall -Werror |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 66 | |
Tianjie Xu | 2b3f800 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 67 | LOCAL_MODULE := librecovery_ui |
| 68 | LOCAL_STATIC_LIBRARIES := \ |
| 69 | libminui \ |
| 70 | libbase |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 71 | |
Tao Bao | 4521b70 | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 72 | ifneq ($(TARGET_RECOVERY_UI_MARGIN_HEIGHT),) |
| 73 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_HEIGHT=$(TARGET_RECOVERY_UI_MARGIN_HEIGHT) |
| 74 | else |
| 75 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_HEIGHT=0 |
| 76 | endif |
| 77 | |
| 78 | ifneq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 79 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_WIDTH=$(TARGET_RECOVERY_UI_MARGIN_WIDTH) |
| 80 | else |
| 81 | LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_WIDTH=0 |
| 82 | endif |
| 83 | |
Tao Bao | 5f8dd99 | 2017-07-28 00:05:40 -0700 | [diff] [blame] | 84 | ifneq ($(TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD),) |
| 85 | LOCAL_CFLAGS += -DRECOVERY_UI_TOUCH_LOW_THRESHOLD=$(TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD) |
| 86 | else |
| 87 | LOCAL_CFLAGS += -DRECOVERY_UI_TOUCH_LOW_THRESHOLD=50 |
| 88 | endif |
| 89 | |
| 90 | ifneq ($(TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD),) |
| 91 | LOCAL_CFLAGS += -DRECOVERY_UI_TOUCH_HIGH_THRESHOLD=$(TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD) |
| 92 | else |
| 93 | LOCAL_CFLAGS += -DRECOVERY_UI_TOUCH_HIGH_THRESHOLD=90 |
| 94 | endif |
| 95 | |
Tao Bao | 0470cee | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 96 | ifneq ($(TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE),) |
| 97 | LOCAL_CFLAGS += -DRECOVERY_UI_PROGRESS_BAR_BASELINE=$(TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE) |
| 98 | else |
| 99 | LOCAL_CFLAGS += -DRECOVERY_UI_PROGRESS_BAR_BASELINE=259 |
| 100 | endif |
| 101 | |
| 102 | ifneq ($(TARGET_RECOVERY_UI_ANIMATION_FPS),) |
| 103 | LOCAL_CFLAGS += -DRECOVERY_UI_ANIMATION_FPS=$(TARGET_RECOVERY_UI_ANIMATION_FPS) |
| 104 | else |
| 105 | LOCAL_CFLAGS += -DRECOVERY_UI_ANIMATION_FPS=30 |
| 106 | endif |
| 107 | |
Tao Bao | eea3af3 | 2017-08-11 13:50:24 -0700 | [diff] [blame] | 108 | ifneq ($(TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS),) |
| 109 | LOCAL_CFLAGS += -DRECOVERY_UI_MENU_UNUSABLE_ROWS=$(TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS) |
| 110 | else |
| 111 | LOCAL_CFLAGS += -DRECOVERY_UI_MENU_UNUSABLE_ROWS=9 |
| 112 | endif |
| 113 | |
Luke Song | 9d4839c | 2017-06-23 14:33:46 -0700 | [diff] [blame] | 114 | ifneq ($(TARGET_RECOVERY_UI_VR_STEREO_OFFSET),) |
| 115 | LOCAL_CFLAGS += -DRECOVERY_UI_VR_STEREO_OFFSET=$(TARGET_RECOVERY_UI_VR_STEREO_OFFSET) |
| 116 | else |
| 117 | LOCAL_CFLAGS += -DRECOVERY_UI_VR_STEREO_OFFSET=0 |
| 118 | endif |
| 119 | |
Tianjie Xu | 2b3f800 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 120 | include $(BUILD_STATIC_LIBRARY) |
| 121 | |
| 122 | # recovery (static executable) |
| 123 | # =============================== |
| 124 | include $(CLEAR_VARS) |
| 125 | |
| 126 | LOCAL_SRC_FILES := \ |
| 127 | adb_install.cpp \ |
| 128 | device.cpp \ |
| 129 | fuse_sdcard_provider.cpp \ |
| 130 | recovery.cpp \ |
| 131 | roots.cpp \ |
| 132 | rotate_logs.cpp \ |
| 133 | |
| 134 | |
| 135 | LOCAL_MODULE := recovery |
| 136 | |
| 137 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 138 | |
| 139 | LOCAL_REQUIRED_MODULES := e2fsdroid_static mke2fs_static mke2fs.conf |
| 140 | |
| 141 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 142 | ifeq ($(HOST_OS),linux) |
| 143 | LOCAL_REQUIRED_MODULES += sload.f2fs mkfs.f2fs |
| 144 | endif |
| 145 | endif |
| 146 | |
| 147 | LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) |
| 148 | LOCAL_CFLAGS += -Wall -Werror |
| 149 | |
Dan Albert | 1ddd350 | 2015-02-18 15:58:15 -0800 | [diff] [blame] | 150 | LOCAL_C_INCLUDES += \ |
| 151 | system/vold \ |
Adrien Grassein | 3cd669f | 2014-11-06 14:53:50 +0100 | [diff] [blame] | 152 | |
Yifan Hong | e8e4c40 | 2017-11-08 14:56:03 -0800 | [diff] [blame] | 153 | # Health HAL dependency |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 154 | LOCAL_STATIC_LIBRARIES := \ |
Yifan Hong | e8e4c40 | 2017-11-08 14:56:03 -0800 | [diff] [blame] | 155 | android.hardware.health@2.0-impl \ |
| 156 | android.hardware.health@2.0 \ |
| 157 | android.hardware.health@1.0 \ |
| 158 | android.hardware.health@1.0-convert \ |
Hridya Valsaraju | bd84bd4 | 2018-01-10 16:18:42 -0800 | [diff] [blame] | 159 | libhealthstoragedefault \ |
Yifan Hong | e8e4c40 | 2017-11-08 14:56:03 -0800 | [diff] [blame] | 160 | libhidltransport \ |
| 161 | libhidlbase \ |
| 162 | libhwbinder \ |
| 163 | libvndksupport \ |
| 164 | libbatterymonitor |
| 165 | |
Tianjie Xu | 2b3f800 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 166 | LOCAL_STATIC_LIBRARIES += librecovery |
| 167 | |
| 168 | # If $(TARGET_RECOVERY_UI_LIB) is defined, the recovery calls make_device() from the |
| 169 | # $(TARGET_RECOVERY_UI_LIB), which depends on the librecovery_ui. |
| 170 | ifeq ($(TARGET_RECOVERY_UI_LIB),) |
| 171 | LOCAL_SRC_FILES += default_device.cpp |
| 172 | else |
| 173 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB) |
| 174 | endif |
| 175 | |
Yifan Hong | e8e4c40 | 2017-11-08 14:56:03 -0800 | [diff] [blame] | 176 | LOCAL_STATIC_LIBRARIES += \ |
Tao Bao | b168f5f | 2017-04-16 15:22:13 -0700 | [diff] [blame] | 177 | libverifier \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 178 | libbootloader_message \ |
Jin Qian | ded2dac | 2017-04-21 14:36:12 -0700 | [diff] [blame] | 179 | libfs_mgr \ |
Alex Deymo | 3165366 | 2017-01-11 14:02:13 -0800 | [diff] [blame] | 180 | libext4_utils \ |
Alex Deymo | 67f3aa8 | 2017-01-11 14:38:20 -0800 | [diff] [blame] | 181 | libsparse \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 182 | libziparchive \ |
| 183 | libotautil \ |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 184 | libmounts \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 185 | libminadbd \ |
Jerry Zhang | d428e79 | 2017-07-13 18:17:35 -0700 | [diff] [blame] | 186 | libasyncio \ |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 187 | libfusesideload \ |
Tianjie Xu | 2b3f800 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 188 | librecovery_ui \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 189 | libminui \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 190 | libpng \ |
Josh Gao | 073164f | 2016-08-05 15:59:05 -0700 | [diff] [blame] | 191 | libcrypto_utils \ |
| 192 | libcrypto \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 193 | libvintf_recovery \ |
| 194 | libvintf \ |
Yifan Hong | 495c521 | 2018-03-06 17:59:58 -0800 | [diff] [blame] | 195 | libhidl-gen-utils \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 196 | libtinyxml2 \ |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 197 | libbase \ |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 198 | libutils \ |
Yifan Hong | e8e4c40 | 2017-11-08 14:56:03 -0800 | [diff] [blame] | 199 | libcutils \ |
Ying Wang | 4e21482 | 2013-04-09 21:41:29 -0700 | [diff] [blame] | 200 | liblog \ |
Jin Qian | 000148d | 2017-11-03 11:52:33 -0700 | [diff] [blame] | 201 | libselinux \ |
| 202 | libz |
Doug Zongker | 49c73a7 | 2010-06-29 17:36:28 -0700 | [diff] [blame] | 203 | |
Yabin Cui | 53e7a06 | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 204 | LOCAL_HAL_STATIC_LIBRARIES := libhealthd |
| 205 | |
Elliott Hughes | 01fcbe1 | 2016-05-23 17:43:41 -0700 | [diff] [blame] | 206 | ifeq ($(AB_OTA_UPDATER),true) |
| 207 | LOCAL_CFLAGS += -DAB_OTA_UPDATER=1 |
| 208 | endif |
| 209 | |
Ying Wang | 5a50b1b | 2015-03-10 11:56:56 -0700 | [diff] [blame] | 210 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 211 | |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 212 | ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),) |
Jin Qian | ded2dac | 2017-04-21 14:36:12 -0700 | [diff] [blame] | 213 | LOCAL_REQUIRED_MODULES += recovery-persist recovery-refresh |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 214 | endif |
| 215 | |
| 216 | include $(BUILD_EXECUTABLE) |
| 217 | |
| 218 | # recovery-persist (system partition dynamic executable run after /data mounts) |
| 219 | # =============================== |
| 220 | include $(CLEAR_VARS) |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 221 | LOCAL_SRC_FILES := \ |
| 222 | recovery-persist.cpp \ |
| 223 | rotate_logs.cpp |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 224 | LOCAL_MODULE := recovery-persist |
| 225 | LOCAL_SHARED_LIBRARIES := liblog libbase |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 226 | LOCAL_CFLAGS := -Wall -Werror |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 227 | LOCAL_INIT_RC := recovery-persist.rc |
| 228 | include $(BUILD_EXECUTABLE) |
| 229 | |
| 230 | # recovery-refresh (system partition dynamic executable run at init) |
| 231 | # =============================== |
| 232 | include $(CLEAR_VARS) |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 233 | LOCAL_SRC_FILES := \ |
| 234 | recovery-refresh.cpp \ |
| 235 | rotate_logs.cpp |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 236 | LOCAL_MODULE := recovery-refresh |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 237 | LOCAL_SHARED_LIBRARIES := liblog libbase |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 238 | LOCAL_CFLAGS := -Wall -Werror |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 239 | LOCAL_INIT_RC := recovery-refresh.rc |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 240 | include $(BUILD_EXECUTABLE) |
| 241 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 242 | # libverifier (static library) |
| 243 | # =============================== |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 244 | include $(CLEAR_VARS) |
| 245 | LOCAL_MODULE := libverifier |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 246 | LOCAL_SRC_FILES := \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 247 | asn1_decoder.cpp \ |
Tao Bao | d7bf82e | 2017-03-18 09:24:11 -0700 | [diff] [blame] | 248 | verifier.cpp |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 249 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | 09e468f | 2017-09-29 14:39:33 -0700 | [diff] [blame] | 250 | libotautil \ |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 251 | libcrypto_utils \ |
| 252 | libcrypto \ |
| 253 | libbase |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 254 | LOCAL_CFLAGS := -Wall -Werror |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 255 | include $(BUILD_STATIC_LIBRARY) |
Doug Zongker | 73ae31c | 2009-12-09 17:01:45 -0800 | [diff] [blame] | 256 | |
Tao Bao | 0470cee | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 257 | # Wear default device |
| 258 | # =============================== |
| 259 | include $(CLEAR_VARS) |
| 260 | LOCAL_SRC_FILES := wear_device.cpp |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 261 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 0470cee | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 262 | |
| 263 | # Should match TARGET_RECOVERY_UI_LIB in BoardConfig.mk. |
| 264 | LOCAL_MODULE := librecovery_ui_wear |
| 265 | |
| 266 | include $(BUILD_STATIC_LIBRARY) |
| 267 | |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 268 | # vr headset default device |
| 269 | # =============================== |
| 270 | include $(CLEAR_VARS) |
| 271 | |
| 272 | LOCAL_SRC_FILES := vr_device.cpp |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 273 | LOCAL_CFLAGS := -Wall -Werror |
Luke Song | e2bd876 | 2017-06-12 16:08:33 -0700 | [diff] [blame] | 274 | |
| 275 | # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk |
| 276 | LOCAL_MODULE := librecovery_ui_vr |
| 277 | |
| 278 | include $(BUILD_STATIC_LIBRARY) |
| 279 | |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 280 | include \ |
Alex Deymo | fb00d82 | 2016-11-08 15:46:07 -0800 | [diff] [blame] | 281 | $(LOCAL_PATH)/boot_control/Android.mk \ |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 282 | $(LOCAL_PATH)/minui/Android.mk \ |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 283 | $(LOCAL_PATH)/tests/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 284 | $(LOCAL_PATH)/tools/Android.mk \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 285 | $(LOCAL_PATH)/updater/Android.mk \ |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 286 | $(LOCAL_PATH)/update_verifier/Android.mk \ |