blob: 40afca253471a0fe70092855375a47fddbe20855 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "fuzzy",
srcs = ["fuzzy.go"],
importpath = "go.skia.org/infra/gold-client/go/imgmatching/fuzzy",
visibility = ["//visibility:public"],
)
go_test(
name = "fuzzy_test",
srcs = ["fuzzy_test.go"],
embed = [":fuzzy"],
deps = [
"//go/testutils/unittest",
"//golden/go/image/text",
"@com_github_stretchr_testify//assert",
],
)