Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 75b76079 authored by Dmitry Dementyev's avatar Dmitry Dementyev
Browse files

Add static dependency between key_store_service and

IKeyStoreService.aidl

Test: manual
Bug: 69539820
Change-Id: I1b65b0355635bf4bc8b16a7fba48d48a77e0ca46
parent acabfe91
Loading
Loading
Loading
Loading
+21 −2
Original line number Diff line number Diff line
@@ -3,7 +3,26 @@ filegroup {
    srcs: ["android/security/keymaster/IKeyAttestationApplicationIdProvider.aidl"],
}

filegroup {
    name: "IKeystoreService.aidl",
// only used by key_store_service
cc_library_static {
    name: "libkeystore_aidl",
    srcs: ["android/security/IKeystoreService.aidl"],
    aidl: {
        export_aidl_headers: true,
        include_dirs: ["frameworks/base/core/java/"],
    },
    header_libs: [
        "libkeystore_headers",
    ],
    shared_libs: [
        "libbinder",
        "libcutils",
        "libhardware",
        "libhidlbase",
        "libhidltransport",
        "libhwbinder",
        "liblog",
        "libselinux",
        "libutils",
    ],
}