blob: 46f8c3f53fecabd6a77f5e6f67be79d65eb30d55 [file] [log] [blame] [edit]
load("@rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "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 = ["@com_github_stretchr_testify//assert"],
)