From cb99b7506a7f4b2d30714dc47a2dfe230a797fb5 Mon Sep 17 00:00:00 2001 From: RJ Ascani Date: Fri, 1 May 2026 14:11:30 -0700 Subject: [PATCH] Add missing program_builder dep to fbcode arm test targets Summary: D102325968 added an import of `executorch.backends.test.program_builder` in `test_fuse_constant_ops_pass.py` but only updated the xplat `targets.bzl` with the corresponding Buck dependency. The fbcode `targets.bzl` was missing this dependency, causing test listing failures for `fbcode//executorch/backends/arm/test:fuse_constant_ops_pass`. Add `//executorch/backends/test:program_builder` to the deps list. Differential Revision: D103456950 --- backends/arm/test/targets.bzl | 1 + 1 file changed, 1 insertion(+) diff --git a/backends/arm/test/targets.bzl b/backends/arm/test/targets.bzl index 52d1b651b75..6e2539cf2dc 100644 --- a/backends/arm/test/targets.bzl +++ b/backends/arm/test/targets.bzl @@ -98,6 +98,7 @@ def define_arm_tests(): "//executorch/backends/arm/tosa:partitioner", "//executorch/backends/arm:vgf", "//executorch/backends/test:graph_builder", + "//executorch/backends/test:program_builder", "//executorch/exir:lib", "fbsource//third-party/pypi/pytest:pytest", "fbsource//third-party/pypi/parameterized:parameterized",