summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/harness/BUILD
blob: 3673166616137f902def4f8a70a220a05d8c13e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
load("//tools:defs.bzl", "go_library")

package(licenses = ["notice"])

go_library(
    name = "harness",
    testonly = 1,
    srcs = [
        "harness.go",
        "machine.go",
        "util.go",
    ],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/cleanup",
        "//pkg/test/dockerutil",
        "//pkg/test/testutil",
        "@com_github_docker_docker//api/types/mount:go_default_library",
    ],
)