...

Text file src/edge-infra.dev/hack/build/rules/container/archsupport/BUILD.bazel

Documentation: edge-infra.dev/hack/build/rules/container/archsupport

     1load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
     2
     3go_library(
     4    name = "archsupport_lib",
     5    srcs = ["main.go"],
     6    importpath = "edge-infra.dev/hack/build/rules/container/archsupport",
     7    visibility = ["//visibility:private"],
     8    deps = ["@com_github_opencontainers_image_spec//specs-go/v1:specs-go"],
     9)
    10
    11go_binary(
    12    name = "archsupport",
    13    embed = [":archsupport_lib"],
    14    visibility = ["//visibility:public"],
    15)

View as plain text