summaryrefslogtreecommitdiffhomepage
path: root/runsc/testutil/BUILD
blob: f845120b0887f94dd17016dbd83fae84065274c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
load("//tools:defs.bzl", "go_library")

package(licenses = ["notice"])

go_library(
    name = "testutil",
    testonly = 1,
    srcs = ["testutil.go"],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/log",
        "//pkg/sync",
        "//runsc/boot",
        "//runsc/specutils",
        "@com_github_cenkalti_backoff//:go_default_library",
        "@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
    ],
)