2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-12-01 07:15:24 +00:00
bazel-lib/tools/expand_template/BUILD.bazel

16 lines
421 B
Python
Raw Normal View History

load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "expand_template_lib",
srcs = ["main.go"],
importpath = "github.com/aspect-build/bazel-lib/tools/expand_template",
visibility = ["//visibility:public"],
deps = ["@org_golang_x_exp//maps"],
)
go_binary(
name = "expand_template",
embed = [":expand_template_lib"],
visibility = ["//visibility:public"],
2023-06-09 23:22:37 +00:00
)