aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/nanopb.BUILD
blob: d21866911b862f0d4adf76c3a07e2732128a6102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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"],
)