k3s/pkg/kubectl/cmd/templates/BUILD

42 lines
1.0 KiB
Python
Raw Normal View History

2016-10-19 21:42:06 +00:00
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = [
"command_groups.go",
"markdown.go",
"normalizers.go",
"templater.go",
"templates.go",
],
2017-10-12 20:52:10 +00:00
importpath = "k8s.io/kubernetes/pkg/kubectl/cmd/templates",
visibility = [
"//build/visible_to:pkg_kubectl_cmd_templates_CONSUMERS",
],
2016-10-19 21:42:06 +00:00
deps = [
2017-06-29 22:14:52 +00:00
"//pkg/kubectl/util/term:go_default_library",
2017-04-12 16:05:10 +00:00
"//vendor/github.com/MakeNowJust/heredoc:go_default_library",
"//vendor/github.com/russross/blackfriday:go_default_library",
"//vendor/github.com/spf13/cobra:go_default_library",
"//vendor/github.com/spf13/pflag:go_default_library",
2016-10-19 21:42:06 +00:00
],
)
2017-01-03 22:40:41 +00:00
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = [
"//build/visible_to:pkg_kubectl_cmd_templates_CONSUMERS",
],
2017-01-03 22:40:41 +00:00
)