blob: 255c3b77aa4543d84878a213e956e236f62c296f [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "allowed",
srcs = [
"allowed.go",
"infra_auth_allowed.go",
],
importpath = "go.skia.org/infra/go/allowed",
visibility = ["//visibility:public"],
deps = [
"//go/metrics2",
"//go/sklog",
"//go/util",
],
)
go_test(
name = "allowed_test",
srcs = [
"allowed_test.go",
"infra_auth_allowed_test.go",
],
embed = [":allowed"],
deps = [
"//go/mockhttpclient",
"@com_github_stretchr_testify//assert",
],
)