about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/library-with-cbits/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/library-with-cbits/BUILD.bazel')
-rw-r--r--third_party/bazel/rules_haskell/tests/library-with-cbits/BUILD.bazel36
1 files changed, 0 insertions, 36 deletions
diff --git a/third_party/bazel/rules_haskell/tests/library-with-cbits/BUILD.bazel b/third_party/bazel/rules_haskell/tests/library-with-cbits/BUILD.bazel
deleted file mode 100644
index c320502ebf..0000000000
--- a/third_party/bazel/rules_haskell/tests/library-with-cbits/BUILD.bazel
+++ /dev/null
@@ -1,36 +0,0 @@
-load(
-    "@io_tweag_rules_haskell//haskell:haskell.bzl",
-    "haskell_library",
-    "haskell_toolchain_library",
-)
-
-haskell_library(
-    name = "library-with-cbits",
-    srcs = ["AddOne.hsc"],
-    linkstatic = False,
-    visibility = ["//visibility:public"],
-    deps = [
-        "//tests/data:ourclibrary",
-        "//tests/hackage:base",
-    ],
-)
-
-haskell_library(
-    name = "library-with-cbits-indirect",
-    srcs = ["AddOne2.hs"],
-    visibility = ["//visibility:public"],
-    deps = [
-        ":library-with-cbits",
-        "//tests/hackage:base",
-    ],
-)
-
-haskell_library(
-    name = "library-with-cbits-static",
-    srcs = ["AddOne.hsc"],
-    visibility = ["//visibility:public"],
-    deps = [
-        "//tests/data:ourclibrary-static",
-        "//tests/hackage:base",
-    ],
-)