mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-08 07:17:12 +02:00
Making it independent from the jsonnet package breaks the circular dependency during stdast generation.
19 lines
409 B
Python
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"],
|
|
)
|