aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 16:13:50 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 16:13:50 +0900
commit9baf6c4c19e285105409494314d5cffab4d65cb8 (patch)
tree9dabdc86f6993d0b23a3932dea07edbc0e5f249f
parent8d1a045313f7041f5dd564a4f12c4cd83b7562da (diff)
downloadcompiler-rt-9baf6c4c19e285105409494314d5cffab4d65cb8.tar.gz
Add "product_available" to product available modules
"vendor_available" modules were available to product modules. However, not all "vendor_available" modules are required to be available to product modules. Some modules want to be available only to product modules but not vendor modules. To cover the requirement, we separate "product_available" from "vendor_available". "vendor_available" will not provide product available module. Bug: 150902910 Test: build Change-Id: I9f86b46416fffefa2749648c136bfc05b3488920
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 8d12b3d93..233a6dea7 100644
--- a/Android.bp
+++ b/Android.bp
@@ -71,6 +71,7 @@ cc_library_static {
cc_library {
name: "libcompiler_rt",
vendor_available: false,
+ product_available: false,
vndk: {
enabled: true,
support_system_process: true,