summaryrefslogtreecommitdiffhomepage
path: root/test/runner/BUILD
blob: 9959ef9b07c7ff6e4beda2a989597de903752f54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
load("//tools:defs.bzl", "go_binary")

package(licenses = ["notice"])

go_binary(
    name = "runner",
    testonly = 1,
    srcs = ["runner.go"],
    data = [
        "//runsc",
    ],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/log",
        "//runsc/specutils",
        "//runsc/testutil",
        "//test/runner/gtest",
        "//test/uds",
        "@com_github_opencontainers_runtime-spec//specs-go:go_default_library",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)