blob: 8235bd0556fcd7af01109838b42dfdc6e02f3737 [file] [log] [blame] [edit]
load("@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",
],
)