summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/harness/BUILD
blob: 1166109388082663b2ebf4991ad9bc6b696bc48a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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/test/dockerutil",
        "//pkg/test/testutil",
        "@com_github_docker_docker//api/types/mount:go_default_library",
    ],
)