From 9baf6c4c19e285105409494314d5cffab4d65cb8 Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Wed, 11 Nov 2020 16:13:50 +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: I9f86b46416fffefa2749648c136bfc05b3488920 --- Android.bp | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.bp b/Android.bp index 8d12b3d93..233a6dea7 100644 --- a/Android.bp +++ b/Android.bp @@ -71,6 +71,7 @@ cc_library_static { cc_library { name: "libcompiler_rt", vendor_available: false, + product_available: false, vndk: { enabled: true, support_system_process: true, -- cgit v1.2.3