summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-08-07 19:50:45 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-08-07 19:50:45 +0200
commitea38c4160a8f218d082ddd5e1c10b021647f61bd (patch)
treef3ae518c905fecf155441f34de10b65dcd9269c8 /Android.mk
parentMerge "Merge Android Pie into master" (diff)
parentBuild and use minadbd as a shared library. (diff)
downloadandroid_bootable_recovery-ea38c4160a8f218d082ddd5e1c10b021647f61bd.tar
android_bootable_recovery-ea38c4160a8f218d082ddd5e1c10b021647f61bd.tar.gz
android_bootable_recovery-ea38c4160a8f218d082ddd5e1c10b021647f61bd.tar.bz2
android_bootable_recovery-ea38c4160a8f218d082ddd5e1c10b021647f61bd.tar.lz
android_bootable_recovery-ea38c4160a8f218d082ddd5e1c10b021647f61bd.tar.xz
android_bootable_recovery-ea38c4160a8f218d082ddd5e1c10b021647f61bd.tar.zst
android_bootable_recovery-ea38c4160a8f218d082ddd5e1c10b021647f61bd.zip
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index b25c1f07a..aa959c909 100644
--- a/Android.mk
+++ b/Android.mk
@@ -127,7 +127,6 @@ health_hal_static_libraries := \
librecovery_static_libraries := \
libbootloader_message \
libfusesideload \
- libminadbd \
libminui \
libverifier \
libotautil \
@@ -170,6 +169,9 @@ LOCAL_CFLAGS := $(recovery_common_cflags)
LOCAL_MODULE := librecovery
+LOCAL_SHARED_LIBRARIES := \
+ libminadbd_services \
+
LOCAL_STATIC_LIBRARIES := \
$(librecovery_static_libraries)
@@ -199,6 +201,7 @@ LOCAL_STATIC_LIBRARIES := \
$(librecovery_static_libraries)
LOCAL_SHARED_LIBRARIES := \
+ libminadbd_services \
librecovery_ui \
LOCAL_HAL_STATIC_LIBRARIES := libhealthd
@@ -236,7 +239,9 @@ LOCAL_REQUIRED_MODULES += \
# module is built with Soong (with `recovery: true` flag).
LOCAL_REQUIRED_MODULES += \
libbase.recovery \
+ libcrypto.recovery \
liblog.recovery \
+ libminadbd_services.recovery \
libpng.recovery \
libz.recovery \