summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Essick <essick@google.com>2022-02-09 10:14:29 -0800
committerRay Essick <essick@google.com>2022-02-09 10:14:29 -0800
commit0a0dd5f489fa53e279beb6e4ccc53019ba61649f (patch)
tree11570816cb1b833fb256a8db77a4fa459b064c0d
parent9e1bf279899dd3ef0a2b41657bcb74f3a444114d (diff)
downloadlibhardware-0a0dd5f489fa53e279beb6e4ccc53019ba61649f.tar.gz
Make apex_available explicit
Move the implicit allowing by modules from a list in the build tools to explicit lines in the relevant module's Android.bp Bug: 215589022 Test: build Change-Id: I17f93210f027cb8189e92b19a46b6d64faef7ed8
-rw-r--r--Android.bp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index acaeb25d..a8f4fe4c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -61,6 +61,7 @@ cc_library_headers {
apex_available: [
"//apex_available:platform",
"com.android.bluetooth",
+ "com.android.media.swcodec",
],
min_sdk_version: "29",
host_supported: true,
@@ -98,4 +99,9 @@ cc_library_shared {
},
},
min_sdk_version: "29",
+ apex_available: [
+ "//apex_available:platform",
+ "com.android.media.swcodec",
+ "test_com.android.media.swcodec",
+ ],
}