Convert libs/services/Android.mk into a blueprint module so it can be linked by other blueprint modules. Test: mmm frameworks/base Change-Id: I7acf9aa084d262a5aba5a58e45d9647e15c6dffb
39 lines
945 B
Plaintext
39 lines
945 B
Plaintext
filegroup {
|
|
name: "IKeyAttestationApplicationIdProvider.aidl",
|
|
srcs: ["android/security/keymaster/IKeyAttestationApplicationIdProvider.aidl"],
|
|
}
|
|
|
|
filegroup {
|
|
name: "IDropBoxManagerService.aidl",
|
|
srcs: ["com/android/internal/os/IDropBoxManagerService.aidl"],
|
|
}
|
|
|
|
// only used by key_store_service
|
|
cc_library_shared {
|
|
name: "libkeystore_aidl",
|
|
srcs: ["android/security/IKeystoreService.aidl"],
|
|
aidl: {
|
|
export_aidl_headers: true,
|
|
include_dirs: [
|
|
"frameworks/base/core/java/",
|
|
"system/security/keystore/",
|
|
],
|
|
},
|
|
shared_libs: [
|
|
"libbinder",
|
|
"libcutils",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"liblog",
|
|
"libkeystore_parcelables",
|
|
"libselinux",
|
|
"libutils",
|
|
],
|
|
export_shared_lib_headers: [
|
|
"libbinder",
|
|
"libkeystore_parcelables",
|
|
],
|
|
}
|