aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2021-01-05 17:37:24 +0900
committerJustin Yun <justinyun@google.com>2021-01-05 17:37:24 +0900
commit4717823716766970b6ae8e06fdd50a270de6b386 (patch)
tree59d3abf34d225bc1c1b45580ee2e098b7daee8f9
parentc717e777466c4e907a8d8a6828fe605807d65df2 (diff)
downloadcompiler-rt-4717823716766970b6ae8e06fdd50a270de6b386.tar.gz
Use vndk.private: true for VNDK-private libs
Instead of using `vendor_available: false`, use `vndk.private: true` for VNDK-private libraries. Bug: 175768895 Test: build Change-Id: Ib952b912d36ad694142e1bcbeb2f98a27039ebc4
-rw-r--r--Android.bp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Android.bp b/Android.bp
index 233a6dea7..31ef8726b 100644
--- a/Android.bp
+++ b/Android.bp
@@ -70,11 +70,12 @@ cc_library_static {
cc_library {
name: "libcompiler_rt",
- vendor_available: false,
- product_available: false,
+ vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
support_system_process: true,
+ private: true,
},
host_supported: true,
native_bridge_supported: true,