about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/hsc/BUILD.bazel
blob: 1e9a07cd5e08181d755a5869d8231163a735c4ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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",
    ],
)