diff options
author | 2021-08-26 11:41:37 +0100 | |
---|---|---|
committer | 2021-09-15 11:18:53 +0100 | |
commit | dc11f7e67a564367be6e37f2d6e40be77229d75f (patch) | |
tree | bf011eda030aacbbb73ed72ada30b422874d9028 | |
parent | 99f31b981d8aab7664a78b17d816abe22bfdfbb8 (diff) |
libbinder: split out PackageManagerNative aidl
Very few clients of libbinder use PackageManagerNative service, as such
it's a waste to couple them together. Now, user of PackageManagerNative
service need to add the corresponding aidl files as shared library.
Bug: 183654927
Test: builds + presubmit
Change-Id: Ie64fb3502d8e5164df4710feb2f525db7c4234a2
Merged-In: Ie64fb3502d8e5164df4710feb2f525db7c4234a2
(cherry picked from commit e45612731034e6a5283516424325a7ab108722e8)
-rw-r--r-- | Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp index 0277af05d1f3..9e63894ac656 100644 --- a/Android.bp +++ b/Android.bp @@ -118,7 +118,6 @@ filegroup { ":libbluetooth-binder-aidl", ":libcamera_client_aidl", ":libcamera_client_framework_aidl", - ":packagemanager_aidl", ":libupdate_engine_aidl", ":resourcemanager_aidl", ":storaged_aidl", @@ -209,6 +208,7 @@ java_library { name: "framework-internal-utils", static_libs: [ "apex_aidl_interface-java", + "packagemanager_aidl-java", "framework-protos", "updatable-driver-protos", "ota_metadata_proto_java", |