about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-with-plugin/BUILD.bazel
blob: f3a8e3f4d68920c82c751e72700db243e9443f73 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "ghc_plugin",
    "haskell_library",
    "haskell_test",
    "haskell_toolchain_library",
)

package(default_testonly = 1)

config_setting(
    name = "debug_build",
    values = {
        "compilation_mode": "dbg",
    },
)

haskell_toolchain_library(name = "base")

haskell_toolchain_library(name = "ghc")

haskell_toolchain_library(name = "process")

haskell_library(
    name = "plugin-lib",
    srcs = ["Plugin.hs"],
    deps = [
        ":base",
        ":ghc",
        ":process",
    ],
)

ghc_plugin(
    name = "plugin",
    args = ["$(location //tests/binary-simple)"],
    module = "Plugin",
    tools = ["//tests/binary-simple"],
    deps = [":plugin-lib"],
)

haskell_test(
    name = "binary-with-plugin",
    srcs = ["Main.hs"],
    plugins = select({
        # XXX If profiling is enabled, ignore the plugin because of
        # https://gitlab.haskell.org/ghc/ghc/issues/14335.
        ":debug_build": [],
        "//conditions:default": [":plugin"],
    }),
    visibility = ["//visibility:public"],
    deps = [":base"],
)