about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-indirect-cbits
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-08-15T15·11+0100
committerVincent Ambo <tazjin@google.com>2019-08-15T15·11+0100
commit128875b501bc2989617ae553317b80faa556d752 (patch)
tree9b32d12123801179ebe900980556486ad4803482 /third_party/bazel/rules_haskell/tests/binary-indirect-cbits
parenta20daf87265a62b494d67f86d4a5199f14394973 (diff)
chore: Remove remaining Bazel-related files r/31
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/binary-indirect-cbits')
-rw-r--r--third_party/bazel/rules_haskell/tests/binary-indirect-cbits/BUILD.bazel36
-rw-r--r--third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Main.hs5
-rw-r--r--third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper.hs5
-rw-r--r--third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper2.hs9
4 files changed, 0 insertions, 55 deletions
diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/BUILD.bazel b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/BUILD.bazel
deleted file mode 100644
index 6668f230e5..0000000000
--- a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/BUILD.bazel
+++ /dev/null
@@ -1,36 +0,0 @@
-load(
-    "@io_tweag_rules_haskell//haskell:haskell.bzl",
-    "haskell_binary",
-    "haskell_library",
-)
-
-haskell_binary(
-    name = "binary-indirect-cbits",
-    srcs = ["Main.hs"],
-    linkstatic = False,
-    visibility = ["//visibility:public"],
-    deps = [
-        "//tests/hackage:base",
-        "//tests/library-with-cbits",
-    ],
-)
-
-haskell_binary(
-    name = "binary-indirect-cbits-partially-static",
-    srcs = ["Main.hs"],
-    linkstatic = False,
-    deps = [
-        "//tests/hackage:base",
-        "//tests/library-with-cbits:library-with-cbits-static",
-    ],
-)
-
-haskell_binary(
-    name = "binary-indirect-cbits-fully-static",
-    srcs = ["Main.hs"],
-    linkstatic = True,
-    deps = [
-        "//tests/hackage:base",
-        "//tests/library-with-cbits:library-with-cbits-static",
-    ],
-)
diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Main.hs b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Main.hs
deleted file mode 100644
index c9d7037e23..0000000000
--- a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Main.hs
+++ /dev/null
@@ -1,5 +0,0 @@
-import AddOne
-
-main :: IO ()
-main = do
-  putStrLn $ show $ addOne 2
diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper.hs b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper.hs
deleted file mode 100644
index 00b6be28f4..0000000000
--- a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper.hs
+++ /dev/null
@@ -1,5 +0,0 @@
-module Wrapper
-  ( module AddOne
-  ) where
-
-import AddOne
diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper2.hs b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper2.hs
deleted file mode 100644
index a39233a842..0000000000
--- a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper2.hs
+++ /dev/null
@@ -1,9 +0,0 @@
-module Wrapper2
-  ( module AddOne
-  , addOne2
-  ) where
-
-import AddOne
-import qualified Wrapper
-
-addOne2 = Wrapper.addOne