| package { |
| // See: http://go/android-license-faq |
| // A large-scale-change added 'default_applicable_licenses' to import |
| // all of the 'license_kinds' from "external_iptables_license" |
| // to get the below license kinds: |
| // SPDX-license-identifier-GPL |
| default_applicable_licenses: ["external_iptables_license"], |
| } |
| |
| cc_defaults { |
| name: "libiptc_defaults", |
| defaults: ["iptables_defaults"], |
| |
| cflags: ["-Wno-pointer-sign"], |
| } |
| |
| cc_library_static { |
| name: "libip4tc", |
| defaults: ["libiptc_defaults"], |
| |
| srcs: ["libip4tc.c"], |
| } |
| |
| cc_library_static { |
| name: "libip6tc", |
| defaults: ["libiptc_defaults"], |
| |
| cflags: ["-Wno-unused-function"], |
| |
| srcs: ["libip6tc.c"], |
| } |