abrasion/tools/release/BUILD.bazel

13 lines
327 B
Python
Raw Normal View History

2021-05-08 21:48:58 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
go_binary(
name = "pack",
srcs = ["pack.go"],
deps = [
2021-07-11 00:46:57 +00:00
"//tools/release/proto:manifest_go_proto",
2021-05-08 21:48:58 +00:00
"@org_golang_google_protobuf//encoding/prototext",
"@org_golang_google_protobuf//proto",
],
visibility = ["//visibility:public"],
2021-07-11 00:46:57 +00:00
)