| load("@io_bazel_rules_go//go:def.bzl", "go_library") |
| load("//bazel/go:go_test.bzl", "go_test") |
| |
| 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/util", |
| "@com_github_stretchr_testify//require", |
| ], |
| ) |