kubernetes/vendor/golang.org/x/oauth2/jwt/BUILD
Benoit Sigoure ef492e2d70 vendor: update golang.org/x/oauth2 and cloud.google.com/go
Pick up the bug fix for golang/oauth2#237
Bump up cloud.google.com/go as a result of updating the OAuth2 code.

This commit was generated by:
./hack/pin-dependency.sh golang.org/x/oauth2 9f3314589c9a
./hack/pin-dependency.sh cloud.google.com/go v0.34.0
./hack/update-vendor.sh
git add vendor
git add -u
2019-04-23 14:00:51 -07:00

29 lines
762 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["jwt.go"],
importmap = "k8s.io/kubernetes/vendor/golang.org/x/oauth2/jwt",
importpath = "golang.org/x/oauth2/jwt",
visibility = ["//visibility:public"],
deps = [
"//vendor/golang.org/x/oauth2:go_default_library",
"//vendor/golang.org/x/oauth2/internal:go_default_library",
"//vendor/golang.org/x/oauth2/jws:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)