blob: e4815c27a0228dca9f8aeced9616501fbff57d13 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "format",
srcs = [
"format.go",
"leagacyformat.go",
],
importpath = "go.skia.org/infra/perf/go/ingest/format",
visibility = ["//visibility:public"],
deps = [
"//go/skerr",
"//perf/go/types",
],
)
go_test(
name = "format_test",
srcs = ["format_test.go"],
embed = [":format"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)