peridot/vendor/github.com/google/gnostic-models/compiler/BUILD.bazel

24 lines
719 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 = "compiler",
srcs = [
"context.go",
"error.go",
"extensions.go",
"helpers.go",
"main.go",
"reader.go",
],
importmap = "peridot.resf.org/vendor/github.com/google/gnostic-models/compiler",
importpath = "github.com/google/gnostic-models/compiler",
2022-07-07 20:11:50 +00:00
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/google/gnostic-models/extensions",
"//vendor/github.com/google/gnostic-models/jsonschema",
2022-07-07 20:11:50 +00:00
"//vendor/gopkg.in/yaml.v3:yaml_v3",
2024-10-16 11:26:54 +00:00
"@com_github_golang_protobuf//proto",
"@com_github_golang_protobuf//ptypes/any",
2022-07-07 20:11:50 +00:00
],
)