diff --git a/backends/arm/test/TARGETS b/backends/arm/test/TARGETS index d03a93c46b..a789545a4d 100644 --- a/backends/arm/test/TARGETS +++ b/backends/arm/test/TARGETS @@ -30,3 +30,17 @@ python_library( "fbsource//third-party/pypi/pytest:pytest", ] ) + +python_library( + name = "arm_tester", + srcs = glob(["tester/*.py"]), + deps = [ + ":runner_utils", + ":common", + "//executorch/backends/arm:tosa_mapping", + "//executorch/backends/arm:tosa_specification", + "//executorch/backends/arm/quantizer:arm_quantizer", + "//executorch/devtools/backend_debug:delegation_info", + "fbsource//third-party/pypi/tabulate:tabulate", + ] +)