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.
20 lines
323 B
20 lines
323 B
7 years ago
|
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"],
|
||
|
)
|
||
|
|