aboutsummaryrefslogtreecommitdiffhomepage
path: root/nanopb.BUILD
diff options
context:
space:
mode:
authorGravatar Derek Murray <derek.murray@gmail.com>2016-06-03 01:04:46 -0700
committerGravatar Martin Wicke <martin.wicke@gmail.com>2016-06-03 01:04:46 -0700
commit77da9d0715a1d4b133515655823560a3bbfc3c7e (patch)
tree976be8e6645689eca77b56f85b0e0653ec7dd731 /nanopb.BUILD
parent5309675019fe80c39a019057f4f034a2faed4cd7 (diff)
Updated gRPC to release 0.14. (#2632)
* Updated gRPC to release 0.14. * Added grpc.BUILD file to work around bugs in the official BUILD.
Diffstat (limited to 'nanopb.BUILD')
-rw-r--r--nanopb.BUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/nanopb.BUILD b/nanopb.BUILD
new file mode 100644
index 0000000000..fedaf1bd47
--- /dev/null
+++ b/nanopb.BUILD
@@ -0,0 +1,19 @@
+SOURCES = [
+ "pb_common.c",
+ "pb_decode.c",
+ "pb_encode.c",
+]
+
+HEADERS = [
+ "pb.h",
+ "pb_common.h",
+ "pb_decode.h",
+ "pb_encode.h",
+]
+
+cc_library(
+ name = "nanopb",
+ srcs = SOURCES,
+ hdrs = HEADERS,
+ visibility = ["//visibility:public"],
+)