summaryrefslogtreecommitdiffhomepage
path: root/pkg/gate/BUILD
blob: 381474d9ec30bd4ed68db9da52a265dae7ed8cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package(licenses = ["notice"])  # BSD

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

go_library(
    name = "gate",
    srcs = [
        "gate.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/gate",
    visibility = ["//visibility:public"],
)

go_test(
    name = "gate_test",
    srcs = [
        "gate_test.go",
    ],
    deps = [
        ":gate",
    ],
)