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