From 5537eefda725834b47152c15a119d0d19eeff999 Mon Sep 17 00:00:00 2001 From: Hannes Friederich Date: Tue, 10 Jun 2025 01:03:34 -0700 Subject: [PATCH] adjust platform compatibility for qnn backend (#11179) Summary: The Qualcomm dependencies are only available for Android, so let's mark the target accordingly. Pull Request resolved: https://github.com/pytorch/executorch/pull/11179 Test Plan: Imported from GitHub, without a `Test Plan:` line. Rollback Plan: Differential Revision: D75139951 Pulled By: h-friederich --- backends/qualcomm/targets.bzl | 1 + 1 file changed, 1 insertion(+) diff --git a/backends/qualcomm/targets.bzl b/backends/qualcomm/targets.bzl index 9a44ee8b773..2301e6184db 100644 --- a/backends/qualcomm/targets.bzl +++ b/backends/qualcomm/targets.bzl @@ -92,4 +92,5 @@ def define_common_targets(): exported_deps = [ ":schema", ], + platforms = [ANDROID], )