summaryrefslogtreecommitdiffhomepage
path: root/test/root/testdata/BUILD
blob: 1256336808bf6d0affa061cec63d8e28dcb85fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
load("@io_bazel_rules_go//go:def.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",
    ],
    importpath = "gvisor.dev/gvisor/test/root/testdata",
    visibility = [
        "//visibility:public",
    ],
)