aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 16:20:03 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 16:20:03 +0900
commit6fea6012646a0266b87c982a01dd8f1cb3920b53 (patch)
tree2e7db214f96c17d42fea5d1d99722379b15fbe72
parent00016103ea5cd93e3d35e96cec25b2323c6336d3 (diff)
downloadgflags-6fea6012646a0266b87c982a01dd8f1cb3920b53.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: I85f78a96a9fb1c885ad5e7a45ef8d776a62921d7
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 7ea14f8..6731620 100644
--- a/Android.bp
+++ b/Android.bp
@@ -2,6 +2,7 @@ cc_library {
name: "libgflags",
host_supported: true,
vendor_available: true,
+ product_available: true,
recovery_available: true,
srcs: [
"src/gflags.cc",