blob: 4a71a6b47f6d311bd636555333186c970d67145a [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "unthrottle",
srcs = ["unthrottle.go"],
importpath = "go.skia.org/infra/autoroll/go/unthrottle",
visibility = ["//visibility:public"],
deps = [
"//go/ds",
"@com_google_cloud_go_datastore//:datastore",
],
)
go_test(
name = "unthrottle_test",
srcs = ["unthrottle_test.go"],
embed = [":unthrottle"],
deps = [
"//go/ds",
"//go/ds/testutil",
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)