aboutsummaryrefslogtreecommitdiff
path: root/pw_protobuf_compiler/proto.gni
diff options
context:
space:
mode:
Diffstat (limited to 'pw_protobuf_compiler/proto.gni')
-rw-r--r--pw_protobuf_compiler/proto.gni8
1 files changed, 7 insertions, 1 deletions
diff --git a/pw_protobuf_compiler/proto.gni b/pw_protobuf_compiler/proto.gni
index 0a3d8e9eb..e6fd4a8b6 100644
--- a/pw_protobuf_compiler/proto.gni
+++ b/pw_protobuf_compiler/proto.gni
@@ -154,7 +154,13 @@ template("_pw_pwpb_proto_library") {
forward_variables_from(invoker, _forwarded_vars)
public_configs = [ ":$target_name._include_path" ]
deps = [ ":$target_name._gen($pw_protobuf_compiler_TOOLCHAIN)" ]
- public_deps = [ dir_pw_protobuf ] + invoker.deps
+ public_deps = [
+ "$dir_pw_containers:vector",
+ dir_pw_assert,
+ dir_pw_protobuf,
+ dir_pw_result,
+ dir_pw_status,
+ ] + invoker.deps
sources = invoker.outputs
public = filter_include(sources, [ "*.pwpb.h" ])
}