aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/systemlibs
diff options
context:
space:
mode:
authorGravatar Austin Anderson <angerson@google.com>2018-08-22 14:43:45 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-22 14:49:44 -0700
commit13a4688fc32642ca9ca415ae77d445b95f31600c (patch)
tree8905b1973294bb03f54b9c0e011e4ed92a2d7b97 /third_party/systemlibs
parentce127f779dbc6f9d65e17cc3c38f37a06ba666d0 (diff)
Convert TensorFlow's flatbuffers dependency to new third party import method
PiperOrigin-RevId: 209833197
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"],
-)