Home | History | Annotate | Download | only in secilc
      1 common_CFLAGS = [
      2     "-Wall",
      3     "-Werror",
      4     "-Wshadow",
      5 ]
      6 
      7 cc_binary {
      8     name: "secilc",
      9     host_supported: true,
     10     cflags: common_CFLAGS,
     11     srcs: ["secilc.c"],
     12     static_libs: ["libsepol"],
     13     stl: "none",
     14 }
     15