summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/proctor/BUILD
blob: b4a9b12de11c9a46627de9bf61deb7c1ffdfe548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
load("//tools:defs.bzl", "go_binary")

package(licenses = ["notice"])

go_binary(
    name = "proctor",
    srcs = ["main.go"],
    pure = True,
    visibility = ["//test/runtimes:__pkg__"],
    deps = [
        "//test/runtimes/proctor/lib",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)