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