gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/benchmarks/harness/BUILD (about) 1 load("//tools:defs.bzl", "go_library") 2 3 package( 4 default_applicable_licenses = ["//:license"], 5 licenses = ["notice"], 6 ) 7 8 go_library( 9 name = "harness", 10 testonly = 1, 11 srcs = [ 12 "harness.go", 13 "machine.go", 14 "util.go", 15 ], 16 visibility = ["//:sandbox"], 17 deps = [ 18 "//pkg/cleanup", 19 "//pkg/test/dockerutil", 20 "//pkg/test/testutil", 21 "@com_github_docker_docker//api/types/mount:go_default_library", 22 ], 23 )