aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 18:14:12 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 18:14:12 +0900
commit20dc66c50ecdaa3b53a0576b23386e5e59c60e24 (patch)
treecdc2074a28424abe8397a45cfd7c71b523c46e48
parent4bfa2795f816ebfcb6aef90efa4018fbd0762997 (diff)
downloadlibpng-20dc66c50ecdaa3b53a0576b23386e5e59c60e24.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: I0afeb670766a3c40f3e6b899980d7a3cbd22e1f8
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 8084f4c8f..5e3158c2d 100644
--- a/Android.bp
+++ b/Android.bp
@@ -52,6 +52,7 @@ cc_defaults {
cc_library {
name: "libpng",
vendor_available: true,
+ product_available: true,
// TODO(b/153609531): remove when no longer needed.
native_bridge_supported: true,
recovery_available: true,