From 6fea6012646a0266b87c982a01dd8f1cb3920b53 Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Wed, 11 Nov 2020 16:20:03 +0900 Subject: 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 --- Android.bp | 1 + 1 file changed, 1 insertion(+) 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", -- cgit v1.2.3