1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
package(default_visibility = ["//visibility:public"])
go_library(
name = "descriptor",
srcs = [
"grpc_api_configuration.go",
"openapi_configuration.go",
"registry.go",
"services.go",
"types.go",
],
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/internal/descriptor",
deps = [
"//internal/casing",
"//internal/codegenerator",
"//internal/descriptor/apiconfig",
"//internal/descriptor/openapiconfig",
"//internal/httprule",
"//protoc-gen-openapiv2/options",
"@in_gopkg_yaml_v3//:yaml_v3",
"@org_golang_google_genproto_googleapis_api//annotations",
"@org_golang_google_grpc//grpclog",
"@org_golang_google_protobuf//compiler/protogen",
"@org_golang_google_protobuf//encoding/protojson",
"@org_golang_google_protobuf//proto",
"@org_golang_google_protobuf//types/descriptorpb",
"@org_golang_google_protobuf//types/pluginpb",
"@org_golang_x_text//cases",
"@org_golang_x_text//language",
],
)
go_test(
name = "descriptor_test",
size = "small",
srcs = [
"grpc_api_configuration_test.go",
"openapi_configuration_test.go",
"registry_test.go",
"services_test.go",
"types_test.go",
],
embed = [":descriptor"],
deps = [
"//internal/descriptor/openapiconfig",
"//internal/httprule",
"//protoc-gen-openapiv2/options",
"@org_golang_google_protobuf//compiler/protogen",
"@org_golang_google_protobuf//encoding/prototext",
"@org_golang_google_protobuf//proto",
"@org_golang_google_protobuf//types/descriptorpb",
"@org_golang_google_protobuf//types/pluginpb",
],
)
alias(
name = "go_default_library",
actual = ":descriptor",
visibility = ["//:__subpackages__"],
)
|