summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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",