summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 18:09:56 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 18:09:56 +0900
commit80947e8190897562c46418f6e0e5c36c4faeb1d6 (patch)
tree3a2521b7a84a19503b022b5e69605fe255940d4a
parentc267e673af36f528a44bc70e0cf634d729975309 (diff)
downloadlibldac-80947e8190897562c46418f6e0e5c36c4faeb1d6.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: I538aed5cff2b48378bbf82773d277846c159385c
-rw-r--r--Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 97420a3..5ab063d 100644
--- a/Android.bp
+++ b/Android.bp
@@ -1,6 +1,7 @@
cc_library_shared {
name: "libldacBT_enc",
vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
},
@@ -22,6 +23,7 @@ cc_library_shared {
cc_library_shared {
name: "libldacBT_abr",
vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
},