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