Chaitanya Pratapa | b367a24 | 2019-11-26 11:11:48 -0800 | [diff] [blame] | 1 | |
| 2 | |
Bob Badour | 2e896c1 | 2021-02-03 20:08:32 -0800 | [diff] [blame] | 3 | package { |
| 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 Pratapa | b367a24 | 2019-11-26 11:11:48 -0800 | [diff] [blame] | 13 | cc_library_shared { |
| 14 | name: "libipanat", |
| 15 | |
ChengYou Ho | aecb2bf | 2020-04-08 21:22:12 +0800 | [diff] [blame] | 16 | header_libs: ["device_kernel_headers"], |
Chaitanya Pratapa | b367a24 | 2019-11-26 11:11:48 -0800 | [diff] [blame] | 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 | } |