summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Android.bp21
1 files changed, 15 insertions, 6 deletions
diff --git a/Android.bp b/Android.bp
index 79e978d..a26de2e 100644
--- a/Android.bp
+++ b/Android.bp
@@ -87,12 +87,6 @@ cc_library {
],
}
-cc_library_static {
- name: "libz_current",
- defaults: ["libz_defaults"],
- sdk_version: "current",
-}
-
cc_binary_host {
name: "minigzip",
srcs: ["contrib/minigzip/minigzip.c"],
@@ -129,6 +123,21 @@ cc_binary {
// license: "NOTICE",
// }
+// TODO(b/155351357) remove this library and let libtextclassifier to use libz
+// instead.
+// libz_current allows modules building against the NDK to have access to zlib
+// API that's not available from the NDK libz.
+cc_library_static {
+ name: "libz_current",
+ defaults: ["libz_defaults"],
+ sdk_version: "current",
+
+ apex_available: [
+ "//apex_available:platform", // indirectly from GoogleExtServices that gets installed to /system
+ "com.android.extservices", // indirectly via libtextclassifier
+ ],
+}
+
ndk_library {
name: "libz",
symbol_file: "libz.map.txt",