aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 18:15:59 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 18:15:59 +0900
commit8ebc89e5736b8468b511b1495e412930c9b911d2 (patch)
tree6ae29e96ff2f9042d418c424d0cd944f5ad691b4
parent0279a410e1011eab9b413d4b80be27a9475c2884 (diff)
downloadlibyuv-8ebc89e5736b8468b511b1495e412930c9b911d2.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: Ic368d353043c01b192bb167168ef5c64edfb9a90
-rw-r--r--files/Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/files/Android.bp b/files/Android.bp
index 6ef6e8d3..9dd6163d 100644
--- a/files/Android.bp
+++ b/files/Android.bp
@@ -1,6 +1,7 @@
cc_library {
name: "libyuv",
vendor_available: true,
+ product_available: true,
host_supported: true,
vndk: {
enabled: true,