blob: f6637126501eb65d9f5dcd34fb6133529fe5aa3a (
plain)
1
2
3
4
5
6
7
8
9
10
|
load("//tools:defs.bzl", "go_binary")
package(licenses = ["notice"])
go_binary(
name = "proctor",
srcs = ["main.go"],
visibility = ["//test/runtimes:__pkg__"],
deps = ["//test/runtimes/proctor/lib"],
)
|