aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 16:14:33 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 16:14:33 +0900
commit02b54ec42339273b19f9b9d80b87f9bda7e8c294 (patch)
treec9aad621041d7c410ffd0dec81e7a30116b4cc9a
parent963b4486efcc9e99b5e50bdfb2562f1c9f536682 (diff)
downloadexternal_curl-02b54ec42339273b19f9b9d80b87f9bda7e8c294.tar.gz
external_curl-02b54ec42339273b19f9b9d80b87f9bda7e8c294.tar.bz2
external_curl-02b54ec42339273b19f9b9d80b87f9bda7e8c294.zip
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: Ie372a4d7a5b80a7d1f9429bf70d9a7d399b5ea56
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index ab892e5c..c518a4c3 100644
--- a/Android.bp
+++ b/Android.bp
@@ -50,6 +50,7 @@ cc_defaults {
cc_library {
name: "libcurl",
vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
},