about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/data/BUILD.bazel
blob: 7083de23af4011a170ec48bd475b216be37600bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Generic data files and targets that are used by multiple tests

cc_library(
    name = "ourclibrary",
    srcs = [":ourclibrary.c"],
    linkstatic = False,
    visibility = ["//visibility:public"],
)

cc_library(
    name = "ourclibrary-static",
    srcs = [":ourclibrary.c"],
    linkstatic = True,
    visibility = ["//visibility:public"],
)