diff options
author | Tianjie Xu <xunchang@google.com> | 2019-07-02 15:09:24 -0700 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2019-07-10 12:41:45 -0700 |
commit | 45c40ec87679570aa35be5d8a70e09dd8eeaf5ef (patch) | |
tree | 3411f478102a47664efa1dfe6acbffdbf0cab6b8 /applypatch | |
parent | e1701454b2f46503f5886e09d29645688bea27ca (diff) |
Remove libimgpatch
Stop building libimgpatch as it's merely a subset of libapplypatch.
Test: unit tests pass
Change-Id: I0735ec053344404434a50e53a36e3f55964c2e4f
Diffstat (limited to 'applypatch')
-rw-r--r-- | applypatch/Android.bp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/applypatch/Android.bp b/applypatch/Android.bp index 64dd38d2..42aa5295 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, - }, - }, -} |