aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2018-06-01 15:44:03 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2018-06-01 15:44:03 -0700
commit00e045dbb2b066495dea5807d3fa838151227dc1 (patch)
tree8f548099d6e40c5b092db7db41f974404b8a83d2 /third_party
parent3351fe3a3f3836c8522e10536264c8ee2adb8fa6 (diff)
Fix the inclusion "third_party/nanopb/..." to simply "..."
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nanopb.BUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/third_party/nanopb.BUILD b/third_party/nanopb.BUILD
new file mode 100644
index 0000000000..46ca53a8fe
--- /dev/null
+++ b/third_party/nanopb.BUILD
@@ -0,0 +1,19 @@
+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"],
+)
+