aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/cpp/runfiles/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cpp/runfiles/BUILD')
-rw-r--r--tools/cpp/runfiles/BUILD31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/cpp/runfiles/BUILD b/tools/cpp/runfiles/BUILD
deleted file mode 100644
index 6937bfb6a4..0000000000
--- a/tools/cpp/runfiles/BUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-filegroup(
- name = "srcs",
- srcs = glob(["**"]),
- visibility = ["//tools/cpp:__pkg__"],
-)
-
-filegroup(
- name = "embedded_tools",
- srcs = [
- "BUILD.tools",
- "runfiles.cc",
- "runfiles.h",
- ],
- visibility = ["//tools/cpp:__pkg__"],
-)
-
-cc_library(
- name = "runfiles",
- srcs = ["runfiles.cc"],
- hdrs = ["runfiles.h"],
-)
-
-cc_test(
- name = "runfiles-test",
- srcs = ["runfiles_test.cc"],
- deps = [
- ":runfiles",
- "//src/main/cpp/util:file",
- "//third_party:gtest",
- ],
-)