blob: e781d99b945d2549602e4efb655d9d390db3c029 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "workerpool",
srcs = ["workerpool.go"],
importpath = "go.skia.org/infra/go/workerpool",
visibility = ["//visibility:public"],
)
go_test(
name = "workerpool_test",
srcs = ["workerpool_test.go"],
embed = [":workerpool"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)