summaryrefslogtreecommitdiffstats
path: root/applypatch/Android.bp
diff options
context:
space:
mode:
authorKelvin Zhang <zhangkelvin@google.com>2021-01-14 16:04:34 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-01-14 16:04:34 +0100
commite7a060a91b32cae86a01f3fc9ff3e81b99a6d552 (patch)
tree6f81e464fc1e55009a4143d5f33da84213053ef6 /applypatch/Android.bp
parentMerge "Disable failed imgpatch tests" (diff)
parentRe-enable failed imgpatch tests (diff)
downloadandroid_bootable_recovery-e7a060a91b32cae86a01f3fc9ff3e81b99a6d552.tar
android_bootable_recovery-e7a060a91b32cae86a01f3fc9ff3e81b99a6d552.tar.gz
android_bootable_recovery-e7a060a91b32cae86a01f3fc9ff3e81b99a6d552.tar.bz2
android_bootable_recovery-e7a060a91b32cae86a01f3fc9ff3e81b99a6d552.tar.lz
android_bootable_recovery-e7a060a91b32cae86a01f3fc9ff3e81b99a6d552.tar.xz
android_bootable_recovery-e7a060a91b32cae86a01f3fc9ff3e81b99a6d552.tar.zst
android_bootable_recovery-e7a060a91b32cae86a01f3fc9ff3e81b99a6d552.zip
Diffstat (limited to '')
-rw-r--r--applypatch/Android.bp15
1 files changed, 8 insertions, 7 deletions
diff --git a/applypatch/Android.bp b/applypatch/Android.bp
index 13a962584..80d8041b1 100644
--- a/applypatch/Android.bp
+++ b/applypatch/Android.bp
@@ -54,7 +54,7 @@ cc_library_static {
"libbz",
"libedify",
"libotautil",
- "libz",
+ "libz_stable",
],
shared_libs: [
@@ -71,6 +71,7 @@ cc_library_static {
cc_library_static {
name: "libapplypatch_modes",
vendor_available: true,
+ host_supported: true,
defaults: [
"applypatch_defaults",
@@ -95,6 +96,7 @@ cc_library_static {
cc_binary {
name: "applypatch",
vendor: true,
+ host_supported: true,
defaults: [
"applypatch_defaults",
@@ -120,7 +122,7 @@ cc_binary {
"libbase",
"libcrypto",
"liblog",
- "libz",
+ "libz_stable",
"libziparchive",
],
@@ -129,9 +131,9 @@ cc_binary {
],
}
-cc_library_host_static {
+cc_library_static {
name: "libimgdiff",
-
+ host_supported: true,
defaults: [
"applypatch_defaults",
],
@@ -152,14 +154,13 @@ cc_library_host_static {
"liblog",
"libotautil",
"libutils",
- "libz",
+ "libz_stable",
"libziparchive",
],
}
cc_binary_host {
name: "imgdiff",
-
srcs: [
"imgdiff_main.cpp",
],
@@ -180,6 +181,6 @@ cc_binary_host {
"liblog",
"libbrotli",
"libbz",
- "libz",
+ "libz_stable",
],
}