blob: b294db590d386c406993bcc0b9c192f63a62ea1a [file] [log] [blame]
Leon Scroggins III37adfc02017-01-20 16:04:33 -05001cc_library_static {
2
3 name: "libjsoncpp",
4
5 host_supported: true,
6
7 srcs: [
8 "src/lib_json/json_reader.cpp",
9 "src/lib_json/json_value.cpp",
10 "src/lib_json/json_writer.cpp",
11 ],
12
13 local_include_dirs: [
14 "src/lib_json",
15 ],
16
17 export_include_dirs: ["include"],
18
Chih-Hung Hsieh5b9e4772017-09-28 12:36:04 -070019 cflags: [
20 "-DJSON_USE_EXCEPTION=0",
21 "-Wall",
22 "-Werror",
23 ],
John Muir19f1bfc2017-10-15 22:26:53 -070024
25 target: {
26 windows: {
27 enabled: true,
28 },
29 },
Leon Scroggins III37adfc02017-01-20 16:04:33 -050030}