Merge "Replace filegroup with aidl_library module type" am: 3c0960d65a

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2574736

Change-Id: I3de358c83f25e187dc45414cca759079939c86c8
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2023-05-17 18:30:13 +00:00
committed by Automerger Merge Worker
2 changed files with 13 additions and 7 deletions

View File

@@ -31,9 +31,14 @@ filegroup {
srcs: ["android/security/keymaster/IKeyAttestationApplicationIdProvider.aidl"],
}
filegroup {
name: "IDropBoxManagerService.aidl",
srcs: ["com/android/internal/os/IDropBoxManagerService.aidl"],
aidl_library {
name: "IDropBoxManagerService_aidl",
srcs: [
"com/android/internal/os/IDropBoxManagerService.aidl",
],
hdrs: [
"android/os/DropBoxManager.aidl",
],
}
filegroup {
@@ -146,7 +151,7 @@ filegroup {
],
}
filegroup {
aidl_library {
name: "ILogcatManagerService_aidl",
srcs: ["android/os/logcat/ILogcatManagerService.aidl"],
}

View File

@@ -26,8 +26,6 @@ package {
cc_library_shared {
name: "libservices",
srcs: [
":IDropBoxManagerService.aidl",
":ILogcatManagerService_aidl",
"src/content/ComponentName.cpp",
"src/os/DropBoxManager.cpp",
],
@@ -42,7 +40,10 @@ cc_library_shared {
"libbase_headers",
],
aidl: {
include_dirs: ["frameworks/base/core/java/"],
libs: [
"ILogcatManagerService_aidl",
"IDropBoxManagerService_aidl",
],
},
export_include_dirs: ["include"],