mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-24 14:11:25 +00:00
15 lines
450 B
Python
15 lines
450 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "oauth2adapt",
|
|
srcs = ["oauth2adapt.go"],
|
|
importmap = "peridot.resf.org/vendor/cloud.google.com/go/auth/oauth2adapt",
|
|
importpath = "cloud.google.com/go/auth/oauth2adapt",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/cloud.google.com/go/auth",
|
|
"@org_golang_x_oauth2//:oauth2",
|
|
"@org_golang_x_oauth2//google",
|
|
],
|
|
)
|