blob: cfbdc277a8c8d63a3056d81d4e365338121a1748 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
package(default_visibility = ["//:generators"])
go_library(
name = "go_default_library",
srcs = [
"grpc_api_configuration.go",
"grpc_api_service.go",
"registry.go",
"services.go",
"types.go",
],
importpath = "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/descriptor",
deps = [
"//protoc-gen-grpc-gateway/httprule:go_default_library",
"@com_github_ghodss_yaml//:go_default_library",
"@com_github_golang_glog//:go_default_library",
"@com_github_golang_protobuf//jsonpb:go_default_library_gen",
"@com_github_golang_protobuf//proto:go_default_library",
"@com_github_golang_protobuf//protoc-gen-go/generator:go_default_library_gen",
"@go_googleapis//google/api:annotations_go_proto",
"@io_bazel_rules_go//proto/wkt:compiler_plugin_go_proto",
"@io_bazel_rules_go//proto/wkt:descriptor_go_proto",
],
)
go_test(
name = "go_default_test",
size = "small",
srcs = [
"grpc_api_configuration_test.go",
"registry_test.go",
"services_test.go",
"types_test.go",
],
embed = [":go_default_library"],
deps = [
"//protoc-gen-grpc-gateway/httprule:go_default_library",
"@com_github_golang_protobuf//proto:go_default_library",
"@io_bazel_rules_go//proto/wkt:compiler_plugin_go_proto",
"@io_bazel_rules_go//proto/wkt:descriptor_go_proto",
],
)