blob: 14aa4ce9a9e26ff2d847a5f8d36e9cfa13cc07c6 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["jsonutils.go"],
importpath = "go.skia.org/infra/go/jsonutils",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["jsonutils_test.go"],
embed = [":go_default_library"],
deps = [
"//go/testutils/unittest:go_default_library",
"@com_github_stretchr_testify//require:go_default_library",
],
)