aboutsummaryrefslogtreecommitdiff
path: root/pw_log/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'pw_log/BUILD.bazel')
-rw-r--r--pw_log/BUILD.bazel13
1 files changed, 13 insertions, 0 deletions
diff --git a/pw_log/BUILD.bazel b/pw_log/BUILD.bazel
index 4763d062c..61e25acf4 100644
--- a/pw_log/BUILD.bazel
+++ b/pw_log/BUILD.bazel
@@ -18,6 +18,7 @@ load(
"pw_cc_library",
"pw_cc_test",
)
+load("//pw_protobuf_compiler:proto.bzl", "pw_proto_library")
package(default_visibility = ["//visibility:public"])
@@ -62,6 +63,18 @@ pw_cc_library(
],
)
+proto_library(
+ name = "log_proto",
+ srcs = [
+ "log.proto",
+ ],
+)
+
+pw_proto_library(
+ name = "log_pwpb",
+ deps = [":log_proto"],
+)
+
pw_cc_library(
name = "backend_multiplexer",
visibility = ["@pigweed_config//:__pkg__"],