blob: decaa9aeec91d0e1542e3c6004f96a77a59a6f90 [file] [log] [blame] [edit]
load("@rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "ring",
srcs = ["ring.go"],
importpath = "go.skia.org/infra/go/ring",
visibility = ["//visibility:public"],
)
go_test(
name = "ring_test",
srcs = ["ring_test.go"],
embed = [":ring"],
deps = [
"//go/deepequal/assertdeep",
"@com_github_stretchr_testify//require",
],
)