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"],
)
|