1
2
3package {
4    // http://go/android-license-faq
5    // A large-scale-change added 'default_applicable_licenses' to import
6    // the below license kinds from "hardware_qcom_sm8150_data_ipacfg-mgr_license":
7    //   SPDX-license-identifier-BSD
8    default_applicable_licenses: [
9        "hardware_qcom_sm8150_data_ipacfg-mgr_license",
10    ],
11}
12
13cc_library_shared {
14    name: "libipanat",
15
16     header_libs: ["device_kernel_headers"],
17
18    srcs: [
19        "src/ipa_nat_drv.c",
20        "src/ipa_nat_drvi.c",
21    ],
22
23   shared_libs:
24        ["libcutils",
25        "libdl",
26        "libbase",
27        "libutils",
28    ],
29    export_include_dirs: ["inc"],
30    vendor: true,
31    cflags: [
32        "-DDEBUG",
33        "-Wall",
34        "-Werror",
35    ] + ["-DFEATURE_IPA_ANDROID"],
36
37    clang: true,
38}
39