summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2017-04-12 16:09:16 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-04-12 16:09:16 +0000
commitc206e95cce573cbf9ffe7e7f9a62c6cca6066bfc (patch)
tree4ad2b6a995e4e953304a3a5866bd19a7ce6bc8f3
parent1829495c61b294123b7889f4192f01d9b63529f8 (diff)
parenta1cce971a414790c881582cc56ef5d1369293cb1 (diff)
downloadexternal_libcxx-c206e95cce573cbf9ffe7e7f9a62c6cca6066bfc.tar.gz
external_libcxx-c206e95cce573cbf9ffe7e7f9a62c6cca6066bfc.tar.bz2
external_libcxx-c206e95cce573cbf9ffe7e7f9a62c6cca6066bfc.zip
Mark as vendor_available am: 4cef24ee3c am: 8de3a73b25 am: ef387f085c
am: a1cce971a4 Change-Id: I79b72cb8e51cbe6524e7b078f54d1f9f99860fb7
-rw-r--r--Android.bp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Android.bp b/Android.bp
index bb120a7d9..17942821d 100644
--- a/Android.bp
+++ b/Android.bp
@@ -16,8 +16,9 @@
// host + device static lib
cc_library_static {
- host_supported: true,
name: "libc++_static",
+ host_supported: true,
+ vendor_available: true,
clang: true,
srcs: [
"src/algorithm.cpp",
@@ -72,8 +73,9 @@ cc_library_static {
// host + device dynamic lib
cc_library_shared {
- host_supported: true,
name: "libc++",
+ host_supported: true,
+ vendor_available: true,
clang: true,
whole_static_libs: ["libc++_static"],
stl: "none",