• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library {
2
3    name: "libpackagelistparser",
4    recovery_available: true,
5    srcs: ["packagelistparser.c"],
6    cflags: [
7        "-Wall",
8        "-Werror",
9    ],
10    shared_libs: ["liblog"],
11    local_include_dirs: ["include"],
12    export_include_dirs: ["include"],
13
14    sanitize: {
15        misc_undefined: ["integer"],
16    },
17}
18