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

package(licenses = ["notice"])  # Apache 2.0

go_library(
    name = "testutil",
    srcs = [
        "crictl.go",
        "docker.go",
        "testutil.go",
        "testutil_race.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/runsc/test/testutil",
    visibility = ["//:sandbox"],
    deps = [
        "//runsc/boot",
        "//runsc/specutils",
        "@com_github_cenkalti_backoff//:go_default_library",
        "@com_github_kr_pty//:go_default_library",
        "@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
        "@com_github_syndtr_gocapability//capability:go_default_library",
    ],
)