• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Build API doc generator ====================
2
3cc_binary_host {
4    name: "rs-api-doc-generator",
5    srcs: [
6        "Generator.cpp",
7        "Specification.cpp",
8        "GenerateDocumentation.cpp",
9        "GenerateHeaderFiles.cpp",
10        "GenerateTestFiles.cpp",
11        "Scanner.cpp",
12        "Utilities.cpp",
13        "GenerateStubsWhiteList.cpp",
14    ],
15
16    cflags: [
17        "-Wall",
18        "-Werror",
19    ],
20
21    sanitize: {
22        never: true,
23    },
24}
25
26