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.
24 lines
431 B
24 lines
431 B
licenses(["notice"]) |
|
|
|
exports_files(["LICENSE.txt"]) |
|
|
|
package(default_visibility = ["//visibility:public"]) |
|
|
|
cc_library( |
|
name = "nanopb", |
|
srcs = [ |
|
"pb_common.c", |
|
"pb_decode.c", |
|
"pb_encode.c", |
|
], |
|
hdrs = [ |
|
"pb.h", |
|
"pb_common.h", |
|
"pb_decode.h", |
|
"pb_encode.h", |
|
], |
|
defines = [ |
|
"PB_FIELD_32BIT=1", |
|
], |
|
visibility = ["//visibility:public"], |
|
)
|
|
|