Fixes following build error: echo "module libkeystore_binder missing dependencies: libkeystore_aidl" && false Bug: 69539820 Test: manual Change-Id: I645545dcda33ec41cb1decaa9d09824765b2352f
38 lines
892 B
Plaintext
38 lines
892 B
Plaintext
filegroup {
|
|
name: "IKeyAttestationApplicationIdProvider.aidl",
|
|
srcs: ["android/security/keymaster/IKeyAttestationApplicationIdProvider.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",
|
|
],
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: true,
|
|
},
|
|
}
|