summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2020-04-29 17:43:00 +0900
committerJiyong Park <jiyong@google.com>2020-04-29 17:43:00 +0900
commitf49a97be7fc8ed48cee7e47bdca42f7442113d4d (patch)
tree925053daec2283463f3c68af638ab4d2e54ad204
parent8a352bcff7af98a856f737d791f17a99329f4c66 (diff)
downloadlibsysprop-f49a97be7fc8ed48cee7e47bdca42f7442113d4d.tar.gz
Set apex_available property
The marked library(ies) were available to the APEXes via the hand-written whitelist in build/soong/apex/apex.go. Trying to remove the whitelist by adding apex_available property to the Android.bp of the libraries. Bug: 150999716 Test: m Change-Id: I9b7a4beb656a5d381d48e4dedc104e13e0d2c668
-rw-r--r--srcs/Android.bp6
1 files changed, 6 insertions, 0 deletions
diff --git a/srcs/Android.bp b/srcs/Android.bp
index 091fd63..37bb396 100644
--- a/srcs/Android.bp
+++ b/srcs/Android.bp
@@ -18,4 +18,10 @@ sysprop_library {
srcs: ["**/*.sysprop"],
property_owner: "Platform",
api_packages: ["android.sysprop"],
+
+ apex_available: [
+ "//apex_available:platform",
+ "com.android.art.release",
+ "com.android.art.debug",
+ ],
}