1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/vendor/k8s.io/kubernetes/test/images/resource-consumer/BUILD
2019-10-23 23:19:53 -07:00

41 lines
954 B
Text

package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_binary",
"go_library",
)
go_binary(
name = "resource-consumer",
embed = [":go_default_library"],
)
go_library(
name = "go_default_library",
srcs = [
"resource_consumer.go",
"resource_consumer_handler.go",
"utils.go",
],
importpath = "k8s.io/kubernetes/test/images/resource-consumer",
deps = ["//test/images/resource-consumer/common:go_default_library"],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//test/images/resource-consumer/common:all-srcs",
"//test/images/resource-consumer/consume-cpu:all-srcs",
"//test/images/resource-consumer/controller:all-srcs",
],
tags = ["automanaged"],
)