Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
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.
19 lines
303 B
19 lines
303 B
6 years ago
|
|
||
|
load("@upb//: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"],
|
||
|
)
|