gvisor/runsc/container/test_app/BUILD

21 lines
435 B
Python

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/unet",
"//runsc/testutil",
"@com_github_google_subcommands//:go_default_library",
"@com_github_kr_pty//:go_default_library",
],
)