diff options
author | Tianjie Xu <xunchang@google.com> | 2019-07-11 03:51:46 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-07-11 03:51:46 +0200 |
commit | a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627 (patch) | |
tree | 60e5b89a6a6b4dae6951d8b12542fbaa1f3aa8be | |
parent | Merge "minadbd sends heartbeat to rescue service for getprop command." am: 89cc79cbb6 am: d9ec0bbd06 am: bf57406110 (diff) | |
parent | Merge "Remove libimgpatch" am: ed96da6664 am: 36385bd9ee (diff) | |
download | android_bootable_recovery-a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627.tar android_bootable_recovery-a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627.tar.gz android_bootable_recovery-a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627.tar.bz2 android_bootable_recovery-a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627.tar.lz android_bootable_recovery-a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627.tar.xz android_bootable_recovery-a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627.tar.zst android_bootable_recovery-a09e8dcfd5d1cfd017c120f0b4bc32944cfbb627.zip |
-rw-r--r-- | applypatch/Android.bp | 32 | ||||
-rw-r--r-- | tests/Android.bp | 5 |
2 files changed, 2 insertions, 35 deletions
diff --git a/applypatch/Android.bp b/applypatch/Android.bp index 64dd38d24..42aa52954 100644 --- a/applypatch/Android.bp +++ b/applypatch/Android.bp @@ -168,35 +168,3 @@ cc_binary_host { "libz", ], } - -cc_library_static { - name: "libimgpatch", - - // The host module is for recovery_host_test (Linux only). - host_supported: true, - - defaults: [ - "applypatch_defaults", - ], - - srcs: [ - "bspatch.cpp", - "imgpatch.cpp", - ], - - static_libs: [ - "libbase", - "libbspatch", - "libbz", - "libcrypto", - "libedify", - "libotautil", - "libz", - ], - - target: { - darwin: { - enabled: false, - }, - }, -} diff --git a/tests/Android.bp b/tests/Android.bp index 1801f3b5f..a86704015 100644 --- a/tests/Android.bp +++ b/tests/Android.bp @@ -50,12 +50,11 @@ cc_defaults { }, } -// libapplypatch, libapplypatch_modes, libimgpatch +// libapplypatch, libapplypatch_modes libapplypatch_static_libs = [ "libapplypatch_modes", "libapplypatch", "libedify", - "libimgpatch", "libotautil", "libbsdiff", "libbspatch", @@ -180,7 +179,7 @@ cc_test_host { target: { darwin: { - // libimgdiff is not available on the Mac. + // libapplypatch in "libupdater_defaults" is not available on the Mac. enabled: false, }, }, |