Files
tensorflow/third_party/jsoncpp.BUILD
Yong Tang 8361af1f21 Update jsoncpp to 1.9.4
The jsoncpp version in tensorflow was 1.9.2 which was almost 2 years
old. This PR updates the jsoncpp to 1.9.4 which consists of OSS-Fuzz
fixes (https://github.com/open-source-parsers/jsoncpp/releases/tag/1.9.4)
that is worth updating.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2021-04-24 17:10:23 +00:00

38 lines
930 B
Plaintext

licenses(["unencumbered"]) # Public Domain or MIT
exports_files(["LICENSE"])
cc_library(
name = "jsoncpp",
srcs = [
"include/json/assertions.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/allocator.h",
"include/json/config.h",
"include/json/forwards.h",
"include/json/json.h",
"include/json/json_features.h",
"include/json/reader.h",
"include/json/value.h",
"include/json/version.h",
"include/json/writer.h",
],
copts = [
"-DJSON_USE_EXCEPTION=0",
"-DJSON_HAS_INT64",
],
includes = ["include"],
visibility = ["//visibility:public"],
deps = [":private"],
)
cc_library(
name = "private",
textual_hdrs = ["src/lib_json/json_valueiterator.inl"],
)