blob: 682a7fb78bc4c8be9929c74c8f610c1cb7e3a878 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "swarming",
srcs = ["swarming.go"],
importpath = "go.skia.org/infra/task_scheduler/go/task_execution/swarming",
visibility = ["//visibility:public"],
deps = [
"//go/cas/rbe",
"//go/common",
"//go/now",
"//go/skerr",
"//go/swarming",
"//go/timeout",
"//go/util",
"//task_scheduler/go/types",
"@io_opencensus_go//trace",
"@org_chromium_go_luci//common/api/swarming/swarming/v1:swarming",
],
)
go_test(
name = "swarming_test",
srcs = ["swarming_test.go"],
embed = [":swarming"],
deps = [
"//go/now",
"//go/swarming",
"//go/swarming/mocks",
"//go/testutils",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//mock",
"@com_github_stretchr_testify//require",
"@org_chromium_go_luci//common/api/swarming/swarming/v1:swarming",
],
)