kubernetes/vendor/golang.org/x/oauth2/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

35 lines
914 B
Python

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