clair/vendor/github.com/grpc-ecosystem/grpc-gateway/examples/proto/sub2/BUILD.bazel
2018-05-24 13:48:14 +02:00

22 lines
557 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
package(default_visibility = ["//visibility:public"])
proto_library(
name = "sub2_proto",
srcs = ["message.proto"],
)
go_proto_library(
name = "sub2_go_proto",
importpath = "github.com/grpc-ecosystem/grpc-gateway/examples/proto/sub2",
proto = ":sub2_proto",
)
go_library(
name = "go_default_library",
embed = [":sub2_go_proto"],
importpath = "github.com/grpc-ecosystem/grpc-gateway/examples/proto/sub2",
)