blob: 6cb2162d847fe87aaee7702590b9188a640dd5ab [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3package(default_visibility = ["//:generators"])
4
5go_library(
6 name = "go_default_library",
7 srcs = ["generator.go"],
8 importpath = "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/generator",
9 deps = [
10 "//protoc-gen-grpc-gateway/descriptor:go_default_library",
11 "@io_bazel_rules_go//proto/wkt:compiler_plugin_go_proto",
12 ],
13)