aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/systemlibs
diff options
context:
space:
mode:
authorGravatar Austin Anderson <angerson@google.com>2018-08-16 15:10:29 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-16 15:13:48 -0700
commitf35866577cb8d27a51b31f49f472e926c4359e1f (patch)
tree9bc1dfeb2cc7482451d95947fda19a59b7297949 /third_party/systemlibs
parent1c7cafc092cf489b77f338478be5bde1721c5d71 (diff)
Convert TensorFlow's flatbuffers dependency to new third party import method.
PiperOrigin-RevId: 209056244
Diffstat (limited to 'third_party/systemlibs')
-rw-r--r--third_party/systemlibs/flatbuffers.BUILD38
1 files changed, 0 insertions, 38 deletions
diff --git a/third_party/systemlibs/flatbuffers.BUILD b/third_party/systemlibs/flatbuffers.BUILD
deleted file mode 100644
index 14fceada82..0000000000
--- a/third_party/systemlibs/flatbuffers.BUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-licenses(["notice"]) # Apache 2.0
-
-filegroup(
- name = "LICENSE.txt",
- visibility = ["//visibility:public"],
-)
-
-# Public flatc library to compile flatbuffer files at runtime.
-cc_library(
- name = "flatbuffers",
- linkopts = ["-lflatbuffers"],
- visibility = ["//visibility:public"],
-)
-
-# Public flatc compiler library.
-cc_library(
- name = "flatc_library",
- linkopts = ["-lflatbuffers"],
- visibility = ["//visibility:public"],
-)
-
-genrule(
- name = "lnflatc",
- outs = ["flatc.bin"],
- cmd = "ln -s $$(which flatc) $@",
-)
-
-# Public flatc compiler.
-sh_binary(
- name = "flatc",
- srcs = ["flatc.bin"],
- visibility = ["//visibility:public"],
-)
-
-cc_library(
- name = "runtime_cc",
- visibility = ["//visibility:public"],
-)