
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
35 lines
914 B
Python
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"],
|
|
)
|