blob: a8642536cf9ab13c7493a8a9e96136ff0d93b8dd [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"apigee.go",
"apigeeKeyAttributes.go",
"apigeeKeyChecker.go",
"apigeeReport.go",
"applications.go",
"products.go",
"rejecter.go",
"jwt.go",
],
deps = [
"//adapter/config:go_default_library",
"//common:go_default_library",
"//external:mixer_adapter",
"@com_github_hashicorp_go_multierror//:go_default_library",
"@com_github_dgrijalva_jwtgo//:go_default_library",
],
)
go_test(
name = "tests",
size = "medium",
srcs = [
"apigeeKeyAttributes_test.go",
"apigeeKeyChecker_test.go",
"apigeeReport_test.go",
"rejecter_test.go",
],
library = ":go_default_library",
deps = [
"//mock:go_default_library",
],
)