diff options
author | Dan Willemsen <dwillemsen@google.com> | 2016-11-30 06:05:59 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-11-30 06:05:59 +0000 |
commit | 69b012354944dfe18f44662297aac11bd4fe9a5c (patch) | |
tree | 9cca6d8bfc899e65a9a215d43a961fa42fdbfa94 /libziparchive | |
parent | 895cd44bd9c7acfde40ac561c20c3983723210a6 (diff) | |
parent | ab34b47b359aced9e363f4e4d7018a82720f6868 (diff) | |
download | core-69b012354944dfe18f44662297aac11bd4fe9a5c.tar.gz core-69b012354944dfe18f44662297aac11bd4fe9a5c.tar.bz2 core-69b012354944dfe18f44662297aac11bd4fe9a5c.zip |
Enable libbase/libutils/libziparchive on host bionic
am: ab34b47b35
Change-Id: If8e762eace58a494efede9ef5cb09be99b74e5b8
Diffstat (limited to 'libziparchive')
-rw-r--r-- | libziparchive/Android.bp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/libziparchive/Android.bp b/libziparchive/Android.bp index 5ed0fe853..fce137852 100644 --- a/libziparchive/Android.bp +++ b/libziparchive/Android.bp @@ -62,7 +62,17 @@ cc_library { android: { static_libs: ["libz"], }, - host: { + linux_bionic: { + static_libs: ["libz"], + enabled: true, + }, + linux: { + shared_libs: ["libz-host"], + }, + darwin: { + shared_libs: ["libz-host"], + }, + windows: { shared_libs: ["libz-host"], }, }, |