kubernetes/plugin/pkg/auth/authenticator/request/headerrequest/BUILD

44 lines
1 KiB
Python
Raw Normal View History

2016-10-24 12:49:44 -04:00
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
2017-01-04 16:55:10 -05:00
go_test(
name = "go_default_test",
srcs = ["requestheader_test.go"],
library = ":go_default_library",
tags = ["automanaged"],
deps = ["//vendor:k8s.io/apiserver/pkg/authentication/user"],
)
2016-10-24 12:49:44 -04:00
go_library(
name = "go_default_library",
srcs = ["requestheader.go"],
tags = ["automanaged"],
deps = [
"//plugin/pkg/auth/authenticator/request/x509:go_default_library",
2017-01-04 10:39:05 -05:00
"//vendor:k8s.io/apiserver/pkg/authentication/authenticator",
2017-01-04 09:31:53 -05:00
"//vendor:k8s.io/apiserver/pkg/authentication/user",
2017-01-04 16:55:10 -05:00
"//vendor:k8s.io/client-go/pkg/util/cert",
"//vendor:k8s.io/client-go/pkg/util/sets",
2016-10-24 12:49:44 -04:00
],
)
2017-01-03 17:40:41 -05:00
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)