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