forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsoncpp.BUILD
31 lines (29 loc) · 825 Bytes
/
jsoncpp.BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
licenses(["unencumbered"]) # Public Domain or MIT
cc_library(
name = "jsoncpp",
srcs = [
"include/json/assertions.h",
"src/lib_json/json_batchallocator.h",
"src/lib_json/json_reader.cpp",
"src/lib_json/json_tool.h",
"src/lib_json/json_value.cpp",
"src/lib_json/json_writer.cpp",
],
hdrs = [
"include/json/autolink.h",
"include/json/config.h",
"include/json/features.h",
"include/json/forwards.h",
"include/json/json.h",
"include/json/reader.h",
"include/json/value.h",
"include/json/writer.h",
],
includes = ["include"],
visibility = ["//visibility:public"],
deps = [":private"],
)
cc_library(
name = "private",
textual_hdrs = ["src/lib_json/json_valueiterator.inl"],
)