Home | History | Annotate | Download | only in libxtables
      1 //----------------------------------------------------------------
      2 // libxtables
      3 
      4 cc_library_static {
      5     name: "libxtables",
      6     defaults: ["iptables_defaults"],
      7 
      8     header_libs: [
      9         "iptables_iptables_headers",
     10         "iptables_config_header",
     11     ],
     12     export_header_lib_headers: ["iptables_headers"],
     13 
     14     cflags: [
     15         "-DNO_SHARED_LIBS=1",
     16         "-DXTABLES_INTERNAL",
     17         "-DXTABLES_LIBDIR=\"xtables_libdir_not_used\"",
     18 
     19         "-Wno-missing-field-initializers",
     20     ],
     21 
     22     srcs: [
     23         "xtables.c",
     24         "xtoptions.c",
     25     ],
     26 }
     27