blob: e6a8dbd0200409e72f5afbd2de77220cfc179786 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "gate",
srcs = [
"gate.go",
],
importpath = "gvisor.dev/gvisor/pkg/gate",
visibility = ["//visibility:public"],
)
go_test(
name = "gate_test",
srcs = [
"gate_test.go",
],
deps = [
":gate",
],
)
|