aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 16:12:34 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 16:12:34 +0900
commitcac8836c6604de44ce916c3b65fe25fecf3f5e3b (patch)
treea7d44794b654d34771bf021048c5d241489504a7
parent9a2ebb62cccfcfe2a5d6031ffcdf15cb6ffbcc0f (diff)
downloadclang-cac8836c6604de44ce916c3b65fe25fecf3f5e3b.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: I55feec6524e93317e92f4d8ffc7ac6edf504a65a
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index a1b9ac31e9..2281e3d9f8 100644
--- a/Android.bp
+++ b/Android.bp
@@ -61,6 +61,7 @@ clang_generated_headers = [
cc_library_headers {
name: "clang-headers",
vendor_available: true,
+ product_available: true,
host_supported: true,
// TODO(b/153609531): remove when no longer needed.
native_bridge_supported: true,