summaryrefslogtreecommitdiffhomepage
path: root/runsc/container/test_app/BUILD
blob: 82dbd54d28c78ccf999a17f067f567df1fef9454 (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_binary")

package(licenses = ["notice"])

go_binary(
    name = "test_app",
    testonly = 1,
    srcs = [
        "fds.go",
        "test_app.go",
    ],
    pure = "on",
    visibility = ["//runsc/container:__pkg__"],
    deps = [
        "//pkg/unet",
        "//runsc/test/testutil",
        "@com_github_google_subcommands//:go_default_library",
    ],
)