blob: 8046bd0b9be9849f4d3f82e017d81c66056c97e9 [file] [log] [blame]
I-Jui (Ray) Sung6e6b6562017-11-16 15:46:57 -08001// Build API doc generator ====================
2
Bob Badour8aedf252021-02-12 21:37:48 -08003package {
4 default_applicable_licenses: ["Android-Apache-2.0"],
5}
6
I-Jui (Ray) Sung6e6b6562017-11-16 15:46:57 -08007cc_binary_host {
8 name: "rs-api-doc-generator",
I-Jui (Ray) Sung6e6b6562017-11-16 15:46:57 -08009 srcs: [
10 "Generator.cpp",
11 "Specification.cpp",
12 "GenerateDocumentation.cpp",
13 "GenerateHeaderFiles.cpp",
14 "GenerateTestFiles.cpp",
15 "Scanner.cpp",
16 "Utilities.cpp",
Pirama Arumuga Nainare0c0bd72020-07-26 22:12:00 -070017 "GenerateRSFunctionsList.cpp",
I-Jui (Ray) Sung6e6b6562017-11-16 15:46:57 -080018 ],
19
20 cflags: [
21 "-Wall",
22 "-Werror",
23 ],
24
25 sanitize: {
26 never: true,
27 },
28}
Yuntao Xuf42746a2021-06-02 11:43:06 -070029
30filegroup {
31 name: "rs_script_api",
32 srcs: ["include/*.rsh"],
33 path: "include",
34}