blob: e4725709ef646d68716c1418f070eeba48a63d14 [file] [log] [blame]
load("@io_bazel_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",
],
)