about summary refs log blame commit diff
path: root/third_party/bazel/rules_haskell/tests/library-with-cbits/BUILD.bazel
blob: c320502ebf3fb23a9510f2cae76827dc144174a3 (plain) (tree)



































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