diff options
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/hsc/BUILD.bazel')
-rw-r--r-- | third_party/bazel/rules_haskell/tests/hsc/BUILD.bazel | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/third_party/bazel/rules_haskell/tests/hsc/BUILD.bazel b/third_party/bazel/rules_haskell/tests/hsc/BUILD.bazel deleted file mode 100644 index 1e9a07cd5e08..000000000000 --- a/third_party/bazel/rules_haskell/tests/hsc/BUILD.bazel +++ /dev/null @@ -1,35 +0,0 @@ -load( - "@io_tweag_rules_haskell//haskell:haskell.bzl", - "haskell_library", - "haskell_test", -) - -package(default_testonly = 1) - -haskell_library( - name = "hsc-lib", - srcs = [ - "Bar.hsc", - "Bar/Baz.hsc", - "Flags.hsc", - "Foo.hsc", - ], - compiler_flags = [ - "-DTHIS_IS_TRUE", - "-optP-DTHIS_TOO_IS_TRUE", - ], - deps = ["//tests/hackage:base"], -) - -haskell_test( - name = "hsc", - srcs = [ - "BinHsc.hsc", - "Main.hs", - ], - visibility = ["//visibility:public"], - deps = [ - ":hsc-lib", - "//tests/hackage:base", - ], -) |