aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpandan Das <spandandas@google.com>2023-11-17 21:32:05 +0000
committerSpandan Das <spandandas@google.com>2024-01-02 23:30:00 +0000
commit9073028274af03828d4897c0d835a979bb7e3877 (patch)
tree9db1ede3a95ba62f1e9cb1b705463925733b2721
parentd765f63328448ffd30e653168299e62501970e60 (diff)
downloadlibfuse-9073028274af03828d4897c0d835a979bb7e3877.tar.gz
Make apex availability of libfuse explicit
The availability to com.android.mediaprovider was done implicitly using a baseline map in build/soong/apex/apex.go. Make this explicit in Android.bp libfuse also requires //apex_available:platform in its apex_available. This lib gets installed in vendor, and //apex_available:platform is required on all non-apex variants including the vendor variants Bug: 281077552 Test: m nothing Change-Id: I4158aa230c434156c27de912c4e992876bd0e2fb
-rw-r--r--Android.bp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 5373206..aabfce5 100644
--- a/Android.bp
+++ b/Android.bp
@@ -97,4 +97,9 @@ cc_library {
"lib/mount.c",
"lib/mount_util.c",
],
+
+ apex_available: [
+ "//apex_available:platform",
+ "com.android.mediaprovider",
+ ],
}