blob: 9a7e1752ce802a9fbbb8db8f256044f3269595f8 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "parsers",
srcs = ["parsers.go"],
importpath = "go.skia.org/infra/bazel/gazelle/frontend/parsers",
visibility = ["//visibility:public"],
)
go_test(
name = "parsers_test",
srcs = ["parsers_test.go"],
embed = [":parsers"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)