blob: 3ebcc1362d8255cfa57d1822e60b47fd599babd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package(licenses = ["notice"]) # Apache 2.0
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "testutil",
srcs = [
"docker.go",
"testutil.go",
"testutil_race.go",
],
importpath = "gvisor.googlesource.com/gvisor/runsc/test/testutil",
visibility = [
"//runsc:__subpackages__",
],
deps = [
"//runsc/boot",
"//runsc/specutils",
"@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
],
)
|