aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 16:23:38 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 16:23:38 +0900
commit673e0ebff6b76708f085e0cc37a230b1e21a1d7c (patch)
tree043afc586efc964ab58730690e65979fee4b6e63
parent2c4c231d25dc7e40a09540f0ae2e0973bf86da2e (diff)
downloadjsoncpp-673e0ebff6b76708f085e0cc37a230b1e21a1d7c.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: I5c2dce7f1cac4a1af4e01022bab318ffd7aeae54
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index f452cf3..834ef6f 100644
--- a/Android.bp
+++ b/Android.bp
@@ -34,6 +34,7 @@ cc_library {
name: "libjsoncpp",
defaults: ["libjsoncpp_defaults"],
vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
support_system_process: true,