1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_library_static {
6    name: "libwifikeystorehal",
7    cppflags: [
8        "-Wall",
9        "-Werror",
10        "-Wextra",
11    ],
12    srcs: ["keystore.cpp"],
13    defaults: [
14        "keystore2_use_latest_aidl_ndk_shared",
15    ],
16    shared_libs: [
17        "android.security.legacykeystore-ndk",
18        "[email protected]",
19        "libbase",
20        "libbinder",
21        "libbinder_ndk",
22        "libcrypto",
23        "libcutils",
24        "libhidlbase",
25        "liblog",
26        "libssl",
27        "libutils",
28    ],
29    export_include_dirs: ["include"],
30}
31