go-jsonnet/ast/BUILD.bazel
itchyny 463509825c
chore: update rules_go and gazelle version to fix bazel build (#756)
* chore: update rules_go and gazelle version to fix bazel build

* chore: fix source file list in ast directory (ref: #746)

* chore: fix dependency list in formatter directory
2024-06-10 21:24:27 +01:00

21 lines
448 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"ast.go",
"clone.go",
"fodder.go",
"identifier.go",
"location.go",
],
importpath = "github.com/google/go-jsonnet/ast",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["identifier_test.go"],
embed = [":go_default_library"],
)