diff options
author | Tao Bao <tbao@google.com> | 2018-08-23 19:49:54 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-08-23 19:49:54 +0200 |
commit | 1487523804d18e7d8b62eeafe60bf38d6476ff23 (patch) | |
tree | ed9fb565742ef284765b746fe68a106432789bf5 | |
parent | Merge "Add /dev/stdin, /dev/stdout, and /dev/stderr in recovery too." am: 11f766af4e (diff) | |
parent | Merge "uncrypt: Depend on commonly used shared libs." (diff) | |
download | android_bootable_recovery-1487523804d18e7d8b62eeafe60bf38d6476ff23.tar android_bootable_recovery-1487523804d18e7d8b62eeafe60bf38d6476ff23.tar.gz android_bootable_recovery-1487523804d18e7d8b62eeafe60bf38d6476ff23.tar.bz2 android_bootable_recovery-1487523804d18e7d8b62eeafe60bf38d6476ff23.tar.lz android_bootable_recovery-1487523804d18e7d8b62eeafe60bf38d6476ff23.tar.xz android_bootable_recovery-1487523804d18e7d8b62eeafe60bf38d6476ff23.tar.zst android_bootable_recovery-1487523804d18e7d8b62eeafe60bf38d6476ff23.zip |
-rw-r--r-- | uncrypt/Android.bp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/uncrypt/Android.bp b/uncrypt/Android.bp index aa56d2f74..107a7f0fc 100644 --- a/uncrypt/Android.bp +++ b/uncrypt/Android.bp @@ -24,13 +24,15 @@ cc_binary { "-Werror", ], - static_libs: [ - "libbootloader_message", - "libotautil", - "libfs_mgr", + shared_libs: [ "libbase", + "libbootloader_message", "libcutils", - "liblog", + "libfs_mgr", + ], + + static_libs: [ + "libotautil", ], init_rc: [ |