From 2034ab84b2ec743aeeabc1735cad33ce0fdbd38a Mon Sep 17 00:00:00 2001 From: Baligh Uddin Date: Sun, 21 Nov 2021 17:43:06 +0000 Subject: [PATCH] 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 --- telephony/common/Android.bp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/telephony/common/Android.bp b/telephony/common/Android.bp index 1cacc0365fe18..b0a812bf57a33 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", ],