about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tools/runfiles/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tools/runfiles/BUILD.bazel')
-rw-r--r--third_party/bazel/rules_haskell/tools/runfiles/BUILD.bazel46
1 files changed, 0 insertions, 46 deletions
diff --git a/third_party/bazel/rules_haskell/tools/runfiles/BUILD.bazel b/third_party/bazel/rules_haskell/tools/runfiles/BUILD.bazel
deleted file mode 100644
index bc99b96c03..0000000000
--- a/third_party/bazel/rules_haskell/tools/runfiles/BUILD.bazel
+++ /dev/null
@@ -1,46 +0,0 @@
-load(
-    "@io_tweag_rules_haskell//haskell:haskell.bzl",
-    "haskell_library",
-    "haskell_test",
-)
-
-haskell_library(
-    name = "runfiles",
-    srcs = ["src/Bazel/Runfiles.hs"],
-    src_strip_prefix = "src",
-    visibility = ["//visibility:public"],
-    deps = [
-        "@hackage//:base",
-        "@hackage//:directory",
-        "@hackage//:filepath",
-    ],
-)
-
-haskell_test(
-    name = "bin",
-    testonly = 1,
-    srcs = ["bin/Bin.hs"],
-    data = ["bin-data.txt"],
-    src_strip_prefix = "bin",
-    deps = [
-        ":runfiles",
-        "@hackage//:base",
-        "@hackage//:filepath",
-    ],
-)
-
-haskell_test(
-    name = "test",
-    srcs = ["test/Test.hs"],
-    data = [
-        "test-data.txt",
-        ":bin",
-    ],
-    src_strip_prefix = "test",
-    deps = [
-        ":runfiles",
-        "@hackage//:base",
-        "@hackage//:filepath",
-        "@hackage//:process",
-    ],
-)