blob: 2c60750efe4808f16f01814bc684610aac774937 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
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",
],
)