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