aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/cgo_pure/BUILD.bazel
blob: 6de07e8d6ac4cae0201775edbfedbdbd82b89669 (plain)
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
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
    name = "cgo_pure",
    srcs = [
        "cgo.c",
        "cgo.go",
        "cgo_no_tag.go",
        "pure.go",
    ],
    cgo = True,
    importpath = "github.com/bazelbuild/rules_go/tests/cgo_pure",
)

go_test(
    name = "cgo_test",
    size = "small",
    srcs = ["cgo_pure_test.go"],
    x_defs = {
        "Expect": "2",
    },
    deps = [":cgo_pure"],
)

go_test(
    name = "pure_test",
    size = "small",
    srcs = ["cgo_pure_test.go"],
    pure = "on",
    x_defs = {
        "Expect": "1",
    },
    deps = [":cgo_pure"],
)