aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ngraph/nlohmann_json.BUILD
diff options
context:
space:
mode:
authorGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-21 11:02:27 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-21 11:02:41 -0700
commitc72c36145b01ba71b88731843fc36914f721a0e8 (patch)
treee1f6fd4048ff5dc7c0b3330cf80a17283e57c42a /third_party/ngraph/nlohmann_json.BUILD
parenta2119c81894e99160978a444f2e8d9431d0f7abb (diff)
parentbc6be507c71046dfc889a90e3949a903d5d1e6eb (diff)
Merge pull request #21122 from NervanaSystems:master
PiperOrigin-RevId: 209623532
Diffstat (limited to 'third_party/ngraph/nlohmann_json.BUILD')
-rw-r--r--third_party/ngraph/nlohmann_json.BUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/third_party/ngraph/nlohmann_json.BUILD b/third_party/ngraph/nlohmann_json.BUILD
new file mode 100644
index 0000000000..a0b18a51cb
--- /dev/null
+++ b/third_party/ngraph/nlohmann_json.BUILD
@@ -0,0 +1,23 @@
+licenses(["notice"]) # 3-Clause BSD
+
+exports_files(["license.txt"])
+
+filegroup(
+ name = "LICENSE",
+ srcs = [
+ "license.txt",
+ ],
+ visibility = ["//visibility:public"],
+)
+
+cc_library(
+ name = "nlohmann_json_lib",
+ hdrs = glob([
+ "include/nlohmann/**/*.hpp",
+ ]),
+ copts = [
+ "-I external/nlohmann_json_lib",
+ ],
+ visibility = ["//visibility:public"],
+ alwayslink = 1,
+)