• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library {
2    name: "fmtlib",
3    srcs: ["fmt/format.cc"],
4    cflags: [
5        "-std=c++11",
6        "-fno-exceptions",
7    ],
8    sanitize: {
9        misc_undefined: ["integer"],
10    },
11    local_include_dirs: ["."],
12    export_include_dirs: ["."],
13}
14