diff --git a/backends/arm/test/misc/TARGETS b/backends/arm/test/misc/TARGETS new file mode 100644 index 00000000000..00b836c51e4 --- /dev/null +++ b/backends/arm/test/misc/TARGETS @@ -0,0 +1,16 @@ +# Copyright 2025 Arm Limited and/or its affiliates. +# +# This source code is licensed under the BSD-style license found in the +# LICENSE file in the root directory of this source tree. + +load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime") + +oncall("executorch") + +runtime.python_library( + name = "dw_convs_shared_weights_module", + srcs = ["test_dw_convs_with_shared_weights.py"], + deps = [ + "//executorch/backends/arm/test:arm_tester_lib", + ], +) diff --git a/backends/arm/test/targets.bzl b/backends/arm/test/targets.bzl index ffb18043536..8715ea80a14 100644 --- a/backends/arm/test/targets.bzl +++ b/backends/arm/test/targets.bzl @@ -67,6 +67,7 @@ def define_arm_tests(): deps = [ "//executorch/backends/arm/test/tester/fb:arm_tester_fb" if is_fbcode else "//executorch/backends/arm/test:arm_tester", "//executorch/backends/arm/test:conftest", + "//executorch/backends/arm/test/misc:dw_convs_shared_weights_module", "//executorch/backends/arm:ethosu", "//executorch/backends/arm/tosa:compile_spec", "//executorch/backends/arm/tosa:partitioner",