mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-08 07:17:12 +02:00
* 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
21 lines
448 B
Python
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"],
|
|
)
|