summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 18:13:31 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 18:13:31 +0900
commit75006a2c7d70cd46871956629ce4512696d3a2d1 (patch)
tree27db0acd2906d282b887cb619d097012b6bbcbee
parentdad964671b247d8dec40cd4981b9b2ae4663d471 (diff)
downloadlibnl-75006a2c7d70cd46871956629ce4512696d3a2d1.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: I2ffd02cf8cc08fbe40f3d06ec071aad86d09740e
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 58122ef7..6ad995a3 100644
--- a/Android.bp
+++ b/Android.bp
@@ -3,6 +3,7 @@ cc_library {
name: "libnl",
host_supported: true,
vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
},