go-jsonnet/internal/dump/BUILD.bazel
Stanisław Barzowski 82f949e7fe Extract AST processing to separate packages
Making it independent from the jsonnet package breaks the circular
dependency during stdast generation.
2019-08-28 20:16:47 +01:00

19 lines
409 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"dump.go",
"pointermap.go",
"utils.go",
],
importpath = "github.com/google/go-jsonnet/internal/dump",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["dump_test.go"],
embed = [":go_default_library"],
)