summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/runner/BUILD
blob: 70cc0159429a35fcf4f43ff9f6ac030e1c663e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
load("//tools:defs.bzl", "go_binary")

package(licenses = ["notice"])

go_binary(
    name = "runner",
    testonly = 1,
    srcs = ["main.go"],
    visibility = ["//test/runtimes:__pkg__"],
    deps = ["//test/runtimes/runner/lib"],
)