aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/nanopb.BUILD
diff options
context:
space:
mode:
authorGravatar Martin Wicke <martin.wicke@gmail.com>2017-11-10 12:26:11 -0800
committerGravatar GitHub <noreply@github.com>2017-11-10 12:26:11 -0800
commitd0a5d885d61b837018cb931a4d577289acc826fc (patch)
treedd344e45c4eca857c02746ef50d990a9cd81ea69 /third_party/nanopb.BUILD
parent047d7965d2877d7b55f4cdb0d0abdcd733f266a9 (diff)
Revert "Branch 175277161"
Diffstat (limited to 'third_party/nanopb.BUILD')
-rw-r--r--third_party/nanopb.BUILD23
1 files changed, 0 insertions, 23 deletions
diff --git a/third_party/nanopb.BUILD b/third_party/nanopb.BUILD
deleted file mode 100644
index d21866911b..0000000000
--- a/third_party/nanopb.BUILD
+++ /dev/null
@@ -1,23 +0,0 @@
-# Description:
-# Nanopb, a tiny ANSI C protobuf implementation for use on embedded devices.
-
-licenses(["notice"]) # zlib license
-
-exports_files(["LICENSE.txt"])
-
-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",
- ],
- includes = ["."],
- visibility = ["//visibility:public"],
-)