diff options
| author | Justin Yun <justinyun@google.com> | 2020-10-29 16:49:43 +0900 |
|---|---|---|
| committer | Justin Yun <justinyun@google.com> | 2020-11-08 23:53:22 +0000 |
| commit | 63e9ec70bb12a45d8dbce1e26b211f8c14e0571a (patch) | |
| tree | 8e08f5052b29266563632527a9294ae5b157d077 /Android.bp | |
| parent | b0a713acf918d87137cb8cfe7de77d47c111f483 (diff) | |
Define product_available property
To make a module available to product variants, it must define
`product_available: true`. `vendor_available: true` will not create
product variants any more.
However, in this CL, we don't change the behavior of
`vendor_available` property. It still creates both variants. After we
update all Android.bp files that need to provide product variants
with `product_available: true`, we may upload the remaining patches.
Bug: 150902910
Test: lunch aosp_arm64-userdebug && m
Change-Id: I0fd5be7bbae2c45d5cab3c3c2ca49f53a9b6f975
Diffstat (limited to 'Android.bp')
| -rw-r--r-- | Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 4d698771a..e7a5de21e 100644 --- a/Android.bp +++ b/Android.bp @@ -46,6 +46,7 @@ toolchain_library { name: "libatomic", defaults: ["linux_bionic_supported"], vendor_available: true, + product_available: true, ramdisk_available: true, vendor_ramdisk_available: true, recovery_available: true, @@ -71,6 +72,7 @@ toolchain_library { name: "libgcc", defaults: ["linux_bionic_supported"], vendor_available: true, + product_available: true, recovery_available: true, native_bridge_supported: true, @@ -94,6 +96,7 @@ toolchain_library { name: "libgcc_stripped", defaults: ["linux_bionic_supported"], vendor_available: true, + product_available: true, ramdisk_available: true, vendor_ramdisk_available: true, recovery_available: true, |
