summaryrefslogtreecommitdiffhomepage
path: root/test/cmd/test_app/BUILD
blob: 98ba5a3d987fb822db0e7e34f982ffe4c3aa75d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load("//tools:defs.bzl", "go_binary")

package(licenses = ["notice"])

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