mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
307 B
18 lines
307 B
5 years ago
|
load("@upb//bazel:upb_proto_library.bzl", "upb_proto_library")
|
||
|
|
||
|
proto_library(
|
||
|
name = "foo_proto",
|
||
|
srcs = ["foo.proto"],
|
||
|
)
|
||
|
|
||
|
upb_proto_library(
|
||
|
name = "foo_upbproto",
|
||
|
deps = [":foo_proto"],
|
||
|
)
|
||
|
|
||
|
cc_binary(
|
||
|
name = "test_binary",
|
||
|
srcs = ["test_binary.c"],
|
||
|
deps = [":foo_upbproto"],
|
||
|
)
|