blob: 30e76df04e2df3e2268da40748756865d1d6ed78 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "test2json",
srcs = [
"test2json.go",
"testutils.go",
],
importpath = "go.skia.org/infra/go/test2json",
visibility = ["//visibility:public"],
deps = [
"//go/exec",
"//go/golang",
"//go/skerr",
"//go/sklog",
"//go/util",
],
)
go_test(
name = "test2json_test",
srcs = ["test2json_test.go"],
embed = [":test2json"],
deps = [
"//go/exec",
"//go/sktest",
"//go/testutils",
"//go/testutils/unittest",
"//go/util",
"@com_github_stretchr_testify//require",
],
)