aboutsummaryrefslogtreecommitdiff
path: root/pw_protobuf/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pw_protobuf/BUILD')
-rw-r--r--pw_protobuf/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/pw_protobuf/BUILD b/pw_protobuf/BUILD
index 54b4d3ac6..40edf6dcf 100644
--- a/pw_protobuf/BUILD
+++ b/pw_protobuf/BUILD
@@ -23,6 +23,12 @@ package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Apache License 2.0
pw_cc_library(
+ name = "config",
+ hdrs = ["public/pw_protobuf/config.h"],
+ includes = ["public"],
+)
+
+pw_cc_library(
name = "pw_protobuf",
srcs = [
"decoder.cc",
@@ -39,6 +45,7 @@ pw_cc_library(
],
includes = ["public"],
deps = [
+ ":config",
"//pw_span",
"//pw_status",
"//pw_varint",
@@ -81,6 +88,14 @@ filegroup(
],
)
+# TODO(frolv): Figure out how to add facade tests to Bazel.
+filegroup(
+ name = "varint_size_test",
+ srcs = [
+ "varint_size_test.cc",
+ ],
+)
+
# TODO(frolv): Figure out what to do about size reports in Bazel.
filegroup(
name = "size_reports",