blob: 6859541ad5939cef9b951cfe4d440356fb71cdd3 (
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 = "testdata",
srcs = [
"busybox.go",
"containerd_config.go",
"httpd.go",
"httpd_mount_paths.go",
"sandbox.go",
"simple.go",
],
visibility = [
"//:sandbox",
],
)
|