From 4de50426ac0ae64b00a9333537cd73e107663340 Mon Sep 17 00:00:00 2001 From: Armando Montanez Date: Thu, 1 Dec 2022 22:50:09 +0000 Subject: [PATCH] pw_thread: Make wildcard build pass Disables targets with proto dependencies that aren't yet expected to build so the wildcard build will pass. Change-Id: I054ae17d23c66dd02f9963969d4f70daef154831 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/121400 Reviewed-by: Alexei Frolov Pigweed-Auto-Submit: Armando Montanez Commit-Queue: Armando Montanez --- pw_presubmit/py/pw_presubmit/pigweed_presubmit.py | 1 - pw_thread/py/BUILD.bazel | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py b/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py index 3e9572330d..6a6778769c 100755 --- a/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py +++ b/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py @@ -476,7 +476,6 @@ def cmake_gcc(ctx: PresubmitContext): '-//pw_boot/...:all', '-//pw_chrono/py/...:all', '-//pw_chrono:chrono_proto_pb2', - '-//pw_thread/py/...:all', '-//pw_work_queue/...:all', '-//targets/stm32f429i_disc1_stm32cube/...:all', '-//third_party/boringssl/...:all', diff --git a/pw_thread/py/BUILD.bazel b/pw_thread/py/BUILD.bazel index a5167ae9a7..873ea5ad04 100644 --- a/pw_thread/py/BUILD.bazel +++ b/pw_thread/py/BUILD.bazel @@ -23,6 +23,7 @@ py_library( "pw_thread/__init__.py", "pw_thread/thread_analyzer.py", ], + tags = ["manual"], deps = [ "//pw_symbolizer/py:pw_symbolizer", "//pw_thread:thread_proto_py_pb2", @@ -38,6 +39,7 @@ py_test( srcs = [ "thread_analyzer_test.py", ], + tags = ["manual"], deps = [ ":pw_thread", "//pw_thread:thread_proto_py_pb2",