blob: 23fce9795254c2cc5421a536a0dea31a990cbf57 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "vpython",
srcs = ["vpython.go"],
data = select({
"@platforms//os:linux": ["@vpython_amd64_linux//:all_files"],
"//conditions:default": [], # Prevent errors on platforms without this CIPD package.
}),
importpath = "go.skia.org/infra/bazel/external/cipd/vpython",
visibility = ["//visibility:public"],
deps = [
"//bazel/go/bazel",
"//go/skerr",
],
)