about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/multi_repl/bc/BUILD.bazel
blob: 98372a4a19251c7e428d7db3751cf72f8d8222d3 (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
package(default_visibility = ["//visibility:public"])

load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_library",
)

haskell_library(
    name = "b",
    srcs = [
        "src/BC/B.hs",
    ],
    src_strip_prefix = "src",
    deps = [
        "//tests/hackage:base",
        "//tests/multi_repl/a",
    ],
)

haskell_library(
    name = "c",
    srcs = [
        "src/BC/C.hs",
    ],
    src_strip_prefix = "src",
    deps = [
        ":b",
        "//tests/hackage:base",
    ],
)