peridot/vendor/github.com/hashicorp/hcl/BUILD.bazel

21 lines
580 B
Python
Raw Normal View History

2022-07-07 20:11:50 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "hcl",
srcs = [
"decoder.go",
"hcl.go",
"lex.go",
"parse.go",
],
importmap = "peridot.resf.org/vendor/github.com/hashicorp/hcl",
importpath = "github.com/hashicorp/hcl",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/hashicorp/hcl/hcl/ast",
"//vendor/github.com/hashicorp/hcl/hcl/parser",
"//vendor/github.com/hashicorp/hcl/hcl/token",
"//vendor/github.com/hashicorp/hcl/json/parser",
],
)