From 471d3b3620d03cceabe51612e812f6e9b76609e3 Mon Sep 17 00:00:00 2001 From: rgoliver Date: Tue, 27 Sep 2022 14:52:53 -0400 Subject: [PATCH] RPC: Fix console python dependency (#22875) Add missing pw_tokenizer dependency. --- examples/common/pigweed/rpc_console/py/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/common/pigweed/rpc_console/py/BUILD.gn b/examples/common/pigweed/rpc_console/py/BUILD.gn index bcc57f42a7f07a..d250129dca13c5 100644 --- a/examples/common/pigweed/rpc_console/py/BUILD.gn +++ b/examples/common/pigweed/rpc_console/py/BUILD.gn @@ -37,6 +37,7 @@ pw_python_package("chip_rpc") { "$dir_pw_log_tokenized/py", "$dir_pw_protobuf_compiler/py", "$dir_pw_rpc/py", + "$dir_pw_tokenizer/py", "${chip_root}/examples/common/pigweed:attributes_service.python", "${chip_root}/examples/common/pigweed:button_service.python", "${chip_root}/examples/common/pigweed:descriptor_service.python",