| load("@io_bazel_rules_go//go:def.bzl", "go_library") |
| |
| go_library( |
| name = "backends", |
| srcs = [ |
| "backends.go", |
| "rbecas.go", |
| "rbecas_helpers.go", |
| "swarming.go", |
| ], |
| importpath = "go.skia.org/infra/cabe/go/backends", |
| visibility = ["//visibility:public"], |
| deps = [ |
| "//cabe/go/perfresults", |
| "//go/auth", |
| "//go/httputils", |
| "//go/sklog", |
| "//go/swarming", |
| "@com_github_bazelbuild_remote_apis//build/bazel/remote/execution/v2:go_default_library", |
| "@com_github_bazelbuild_remote_apis_sdks//go/pkg/client:go_default_library", |
| "@com_github_bazelbuild_remote_apis_sdks//go/pkg/digest:go_default_library", |
| "@org_chromium_go_luci//common/api/swarming/swarming/v1:swarming", |
| "@org_golang_google_api//compute/v0.beta:v0_beta", |
| "@org_golang_google_grpc//:go_default_library", |
| "@org_golang_google_grpc//credentials/oauth", |
| "@org_golang_x_oauth2//:oauth2", |
| "@org_golang_x_oauth2//google", |
| ], |
| ) |