blob: 084963fa5bc46d2ae7854fa7f3fbaf60478b0501 [file] [log] [blame] [edit]
load("@rules_go//go:def.bzl", "go_library")
go_library(
name = "gce",
srcs = ["gce.go"],
importpath = "go.skia.org/infra/go/gce",
visibility = ["//visibility:public"],
deps = [
"//go/common",
"//go/exec",
"//go/httputils",
"//go/metadata",
"//go/sklog",
"//go/util",
"@org_golang_google_api//compute/v0.beta:v0_beta",
"@org_golang_x_oauth2//:oauth2",
"@org_golang_x_oauth2//google",
],
)