diff options
author | Tao Bao <tbao@google.com> | 2018-08-08 19:34:03 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-08-08 19:34:03 +0200 |
commit | 42e28019373cd8954b68cb9fb60c90ad1e3a4b6b (patch) | |
tree | f3ae518c905fecf155441f34de10b65dcd9269c8 /Android.mk | |
parent | Merge "Merge Android Pie into master" am: 9791b21c1f am: 555802b108 (diff) | |
parent | Merge "Build and use minadbd as a shared library." am: ea38c4160a (diff) | |
download | android_bootable_recovery-42e28019373cd8954b68cb9fb60c90ad1e3a4b6b.tar android_bootable_recovery-42e28019373cd8954b68cb9fb60c90ad1e3a4b6b.tar.gz android_bootable_recovery-42e28019373cd8954b68cb9fb60c90ad1e3a4b6b.tar.bz2 android_bootable_recovery-42e28019373cd8954b68cb9fb60c90ad1e3a4b6b.tar.lz android_bootable_recovery-42e28019373cd8954b68cb9fb60c90ad1e3a4b6b.tar.xz android_bootable_recovery-42e28019373cd8954b68cb9fb60c90ad1e3a4b6b.tar.zst android_bootable_recovery-42e28019373cd8954b68cb9fb60c90ad1e3a4b6b.zip |
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 7 |
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 \ |