blob: 72ec1a8eb1bda0ede4b4ea2bc07dd02bb9f65136 [file] [log] [blame]
Chaitanya Pratapab367a242019-11-26 11:11:48 -08001
2
Bob Badour2e896c12021-02-03 20:08:32 -08003package {
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
Chaitanya Pratapab367a242019-11-26 11:11:48 -080013cc_library_shared {
14 name: "libipanat",
15
ChengYou Hoaecb2bf2020-04-08 21:22:12 +080016 header_libs: ["device_kernel_headers"],
Chaitanya Pratapab367a242019-11-26 11:11:48 -080017
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}