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
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_library",
"haskell_toolchain_library",
)
haskell_library(
name = "library-with-cbits",
srcs = ["AddOne.hsc"],
linkstatic = False,
visibility = ["//visibility:public"],
deps = [
"//tests/data:ourclibrary",
"//tests/hackage:base",
],
)
haskell_library(
name = "library-with-cbits-indirect",
srcs = ["AddOne2.hs"],
visibility = ["//visibility:public"],
deps = [
":library-with-cbits",
"//tests/hackage:base",
],
)
haskell_library(
name = "library-with-cbits-static",
srcs = ["AddOne.hsc"],
visibility = ["//visibility:public"],
deps = [
"//tests/data:ourclibrary-static",
"//tests/hackage:base",
],
)
|