aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/nanopb/BUILD
blob: 1dc830eb0186ed34b9174cb546f842c855cecd69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
licenses(["notice"])

exports_files(["LICENSE.txt"])

package(default_visibility = ["//visibility:public"])

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"],
)