blob: 09a36da6ccec98a1029dc805a03b895fd636eda0 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "parser",
srcs = ["parser.go"],
importpath = "go.skia.org/infra/android_ingest/go/parser",
visibility = ["//visibility:public"],
deps = [
"//go/metrics2",
"//go/skerr",
"//go/sklog",
"//perf/go/ingest/format",
],
)
go_test(
name = "parser_test",
srcs = ["parser_test.go"],
embed = [":parser"],
deps = [
"//perf/go/ingest/format",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)