From a81a185f0e788e1b7aeaaeff6affce065e5045d4 Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Wed, 10 Apr 2024 12:43:22 -0700 Subject: [PATCH] Remove noautodeps from files inc executorch/sdk/bundled_program/schema/test/TARGETS (#1302) Summary: autodeps automatically adds and removes dependencies from targets. Removing dependencies reduces build times, build sizes, and error surfaces. Adding dependencies gives your code the things it needs to work. This diff removes **noautodeps** from one or more TARGETS files, opting them into autodeps. This changes **should be low risk** because: * We have verified that `autodeps` runs correctly on the modified files * The TARGETS files in this diff contain _only additions_ and no removals of dependencies. Additions rarely break code. * We have verified that the additions do not create circular dependencies, which are the most common problem when dependencies are added. - If you approve of this diff, please use the "Accept & Ship" button :-) Reviewed By: meyering Differential Revision: D51492409 --- sdk/bundled_program/schema/test/TARGETS | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/bundled_program/schema/test/TARGETS b/sdk/bundled_program/schema/test/TARGETS index ca98d32a478..6c0b5ff7260 100644 --- a/sdk/bundled_program/schema/test/TARGETS +++ b/sdk/bundled_program/schema/test/TARGETS @@ -1,5 +1,3 @@ -# @noautodeps - load("@fbcode_macros//build_defs:python_unittest.bzl", "python_unittest") oncall("executorch")