blob: eef321f5e32be90ca919bc09f21615612e3222a5 [file]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "tables",
srcs = [
"jsonparser.go",
"tables.go",
],
importpath = "github.com/bazel-contrib/buildtools/v10/tables",
visibility = ["//visibility:public"],
)
go_test(
name = "tables_test",
size = "small",
srcs = ["jsonparser_test.go"],
data = glob(["testdata/*"]),
embed = [":tables"],
)
alias(
name = "go_default_library",
actual = ":tables",
visibility = ["//visibility:public"],
)