Files
gvisor/pkg/gate/BUILD
T
Adin Scannell d29e59af9f Standardize on tools directory.
PiperOrigin-RevId: 291745021
2020-01-27 12:21:00 -08:00

23 lines
336 B
Python

load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "gate",
srcs = [
"gate.go",
],
visibility = ["//visibility:public"],
)
go_test(
name = "gate_test",
srcs = [
"gate_test.go",
],
deps = [
":gate",
"//pkg/sync",
],
)