summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Yun <justinyun@google.com>2020-11-11 19:28:54 +0900
committerJustin Yun <justinyun@google.com>2020-11-11 19:28:54 +0900
commita37cf741cfcd997b52b77962dcd1b2c6585bf804 (patch)
tree5e9e34945dc8f73fd820fbfbc5e3320e1730a7af
parente769551fa9f27f71191ce5e08170d369af98c4d5 (diff)
downloadplatform_system_memory_libmemtrack-a37cf741cfcd997b52b77962dcd1b2c6585bf804.tar.gz
platform_system_memory_libmemtrack-a37cf741cfcd997b52b77962dcd1b2c6585bf804.tar.bz2
platform_system_memory_libmemtrack-a37cf741cfcd997b52b77962dcd1b2c6585bf804.zip
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: I7b306b4b4039ef697f5ebb2bd0c44595863be0b7
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index c7dff5a..9322746 100644
--- a/Android.bp
+++ b/Android.bp
@@ -3,6 +3,7 @@
cc_library_shared {
name: "libmemtrack",
vendor_available: true,
+ product_available: true,
vndk: {
enabled: true,
},