From b97c3c8605975e837d66134789247b9353525042 Mon Sep 17 00:00:00 2001 From: Hansong Zhang Date: Fri, 8 Nov 2024 17:27:33 -0800 Subject: [PATCH] Fix arm related internal build Reviewed By: guangy10 Differential Revision: D65694379 --- backends/arm/TARGETS | 12 ++++++++++++ backends/arm/operators/TARGETS | 1 + 2 files changed, 13 insertions(+) diff --git a/backends/arm/TARGETS b/backends/arm/TARGETS index 0dc8797be56..a73973ad04c 100644 --- a/backends/arm/TARGETS +++ b/backends/arm/TARGETS @@ -70,6 +70,18 @@ python_library( ], ) +python_library( + name = "tosa_specification", + srcs = [ + "tosa_specification.py", + ], + typing = True, + deps = [ + "fbsource//third-party/pypi/packaging:packaging", + "//executorch/exir/backend:compile_spec_schema", + ], +) + python_library( name = "tosa_utils", srcs = [ diff --git a/backends/arm/operators/TARGETS b/backends/arm/operators/TARGETS index c2aa8d2dfbd..d12cc7e4dfd 100644 --- a/backends/arm/operators/TARGETS +++ b/backends/arm/operators/TARGETS @@ -7,6 +7,7 @@ python_library( typing = True, deps = [ "//executorch/backends/arm:tosa_mapping", + "//executorch/backends/arm:tosa_specification", ], )