diff options
author | Tobias Thierer <tobiast@google.com> | 2019-09-13 18:56:06 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-09-13 18:56:06 +0200 |
commit | 54100d334880eee98cf435a1f190c1034d89b0e0 (patch) | |
tree | f8150a45ecaead1dd656ecd0d038678a5c068236 /applypatch | |
parent | Merge "Set LOCAL_INJECT_BSSL_HASH for updater" (diff) | |
parent | Link libcrypto dynamically for recovery unit tests. (diff) | |
download | android_bootable_recovery-54100d334880eee98cf435a1f190c1034d89b0e0.tar android_bootable_recovery-54100d334880eee98cf435a1f190c1034d89b0e0.tar.gz android_bootable_recovery-54100d334880eee98cf435a1f190c1034d89b0e0.tar.bz2 android_bootable_recovery-54100d334880eee98cf435a1f190c1034d89b0e0.tar.lz android_bootable_recovery-54100d334880eee98cf435a1f190c1034d89b0e0.tar.xz android_bootable_recovery-54100d334880eee98cf435a1f190c1034d89b0e0.tar.zst android_bootable_recovery-54100d334880eee98cf435a1f190c1034d89b0e0.zip |
Diffstat (limited to 'applypatch')
-rw-r--r-- | applypatch/Android.bp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/applypatch/Android.bp b/applypatch/Android.bp index 42aa52954..ae7e9c5cc 100644 --- a/applypatch/Android.bp +++ b/applypatch/Android.bp @@ -51,12 +51,15 @@ cc_library_static { "libbase", "libbspatch", "libbz", - "libcrypto", "libedify", "libotautil", "libz", ], + shared_libs: [ + "libcrypto", + ], + target: { darwin: { enabled: false, @@ -78,10 +81,13 @@ cc_library_static { static_libs: [ "libapplypatch", "libbase", - "libcrypto", "libedify", "libotautil", ], + + shared_libs: [ + "libcrypto", + ], } cc_binary { |