summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Baligh Uddin <baligh@google.com> 2021-11-21 17:43:06 +0000
committer Baligh Uddin <baligh@google.com> 2021-11-21 17:44:16 +0000
commit2034ab84b2ec743aeeabc1735cad33ce0fdbd38a (patch)
treeb283517f4b53729b27f6d28bb494d633dfeeef54
parent2500e149bc724892e5d05b286a00c0ca5b951bb2 (diff)
Add visibility for packages/modules/Bluetooth/android/app
The code residing in packages/modules/Bluetooth/android/app is migrated from packages/apps/Bluetooth and requires the same visibility rules for frameworks source code. This path currently does not exist, but will be required for migration. Soong build rules do not enforce path existence, which allows us to add the new path now and not during migration. Added visibility along with migrated code in a local tree and performed a local build (bramble-userdebug) BUG: 196026708 Test: TH Change-Id: I66cac592489fc1689d45a7b6427bc58c40a824e2
-rw-r--r--telephony/common/Android.bp5
1 files changed, 4 insertions, 1 deletions
diff --git a/telephony/common/Android.bp b/telephony/common/Android.bp
index 1cacc0365fe1..b0a812bf57a3 100644
--- a/telephony/common/Android.bp
+++ b/telephony/common/Android.bp
@@ -21,7 +21,10 @@ filegroup {
filegroup {
name: "framework-mms-shared-srcs",
- visibility: ["//packages/apps/Bluetooth"],
+ visibility: [
+ "//packages/apps/Bluetooth",
+ "//packages/modules/Bluetooth/android/app",
+ ],
srcs: [
"com/google/android/mms/**/*.java",
],