From 0a87de51a6b1dd82e646e439e53eb79c04edb0a4 Mon Sep 17 00:00:00 2001 From: Scott Wolchok Date: Sat, 1 Mar 2025 14:34:29 -0800 Subject: [PATCH] Add missing dep to executorch/extensin/pybindings:portable_lib This file clearly imports executorch.exir._warnings and thus it should have the dep. Differential Revision: [D70451304](https://our.internmc.facebook.com/intern/diff/D70451304/) [ghstack-poisoned] --- extension/pybindings/TARGETS | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/extension/pybindings/TARGETS b/extension/pybindings/TARGETS index 17ccbb2477c..2e77127bf56 100644 --- a/extension/pybindings/TARGETS +++ b/extension/pybindings/TARGETS @@ -70,5 +70,8 @@ runtime.python_library( "//executorch/runtime/...", "@EXECUTORCH_CLIENTS", ], - deps = [":_portable_lib"], + deps = [ + ":_portable_lib", + "//executorch/exir:_warnings", + ], )