summaryrefslogtreecommitdiffhomepage
path: root/runsc/BUILD
blob: 2f0bbaf2b497592e4206e4c31a8d39088e6c57cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package(licenses = ["notice"])  # Apache 2.0

load("@io_bazel_rules_go//go:def.bzl", "go_binary")

go_binary(
    name = "runsc",
    srcs = [
        "main.go",
    ],
    pure = "on",
    visibility = [
        "//runsc:__subpackages__",
    ],
    x_defs = {"main.gitRevision": "{GIT_REVISION}"},
    deps = [
        "//pkg/log",
        "//runsc/boot",
        "//runsc/cmd",
        "@com_github_google_subcommands//:go_default_library",
    ],
)