about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/multi_repl/BUILD.bazel
blob: b2edce37ab0f4f0cf435b0052fefcda6f890a044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_repl",
)

haskell_repl(
    name = "c_only_repl",
    # To only load :c by source.
    experimental_from_source = ["//tests/multi_repl/bc:c"],
    deps = ["//tests/multi_repl/bc:c"],
)

haskell_repl(
    name = "c_multi_repl",
    deps = ["//tests/multi_repl/bc:c"],
)