You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
710 B
32 lines
710 B
4 months ago
|
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"],
|
||
|
}
|