summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/common/BUILD
blob: b4740bb97e6397f51b6209412ea788c0891a2885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "common",
    srcs = ["common.go"],
    importpath = "gvisor.dev/gvisor/test/runtimes/common",
    visibility = ["//:sandbox"],
)

go_test(
    name = "common_test",
    size = "small",
    srcs = ["common_test.go"],
    deps = [
        ":common",
        "//runsc/testutil",
    ],
)