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

Commit 319a5c11 authored by Dmitry Dementyev's avatar Dmitry Dementyev
Browse files

Make libkeystore_aidl shared and export to PDK.

Bug: 69539820
Test: manual
Change-Id: Iff47e9247fbc2217a2c70a35bbc6c72075af63bb
parent 684cae74
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -4,16 +4,16 @@ filegroup {
}

// only used by key_store_service
cc_library_static {
cc_library_shared {
    name: "libkeystore_aidl",
    srcs: ["android/security/IKeystoreService.aidl"],
    aidl: {
        export_aidl_headers: true,
        include_dirs: ["frameworks/base/core/java/"],
    },
    header_libs: [
        "libkeystore_headers",
        include_dirs: [
            "frameworks/base/core/java/",
            "system/security/keystore/",
        ],
    },
    shared_libs: [
        "libbinder",
        "libcutils",
@@ -22,7 +22,12 @@ cc_library_static {
        "libhidltransport",
        "libhwbinder",
        "liblog",
        "libkeystore_parcelables",
        "libselinux",
        "libutils",
    ],
    export_shared_lib_headers: [
        "libbinder",
        "libkeystore_parcelables",
    ],
}