Files
kubernetes/plugin/pkg/auth/authenticator/password/allow/BUILD
2016-12-29 13:04:10 -08:00

27 lines
515 B
Python

package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_library(
name = "go_default_library",
srcs = ["allow.go"],
tags = ["automanaged"],
deps = [
"//pkg/auth/authenticator:go_default_library",
"//pkg/auth/user:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = ["allow_test.go"],
library = ":go_default_library",
tags = ["automanaged"],
)