blob: a9358ab445aa45d3968a2cccd47f0f90947791ce [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "text",
srcs = ["text.go"],
importpath = "go.skia.org/infra/golden/go/image/text",
visibility = ["//visibility:public"],
)
go_test(
name = "text_test",
srcs = ["text_test.go"],
embed = [":text"],
deps = [
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)