From 80947e8190897562c46418f6e0e5c36c4faeb1d6 Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Wed, 11 Nov 2020 18:09:56 +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: I538aed5cff2b48378bbf82773d277846c159385c --- Android.bp | 2 ++ 1 file changed, 2 insertions(+) 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, }, -- cgit v1.2.3