aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 16:27:20 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 16:27:20 +0900
commitfc8d432ef4dc4aac87df8e5b412fefc215c7cbcf (patch)
treef0937eff6ab909cedf5a783ef66f7cd2ca7bc532
parent0fe32caeac7d8616c83367fefeb57a9b1afa43a3 (diff)
downloadlibevent-fc8d432ef4dc4aac87df8e5b412fefc215c7cbcf.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: I2ff85d00964443784ead6841bc7a133f60cffe59
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 8f790ba..3dd70f4 100644
--- a/Android.bp
+++ b/Android.bp
@@ -17,6 +17,7 @@ cc_library {
host_supported: true,
recovery_available: true,
vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
},