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    shared_libs: [
14        "android.system.keystore2-V1-ndk_platform",
15        "android.security.legacykeystore-ndk_platform",
16        "android.system.wifi.keystore@1.0",
17        "libbase",
18        "libbinder",
19        "libbinder_ndk",
20        "libcrypto",
21        "libcutils",
22        "libhidlbase",
23        "liblog",
24        "libssl",
25        "libutils",
26    ],
27    export_include_dirs: ["include"],
28    cpp_std: "c++17",
29}
30