From 17ae1d5586f5acad8715d37e92a9e254aadb6e03 Mon Sep 17 00:00:00 2001 From: Jon Janzen Date: Thu, 30 Jul 2026 09:03:40 -0700 Subject: [PATCH 1/2] Move targets.bzl to proper location --- {runtime => shim_et/xplat/executorch/runtime}/core/targets.bzl | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {runtime => shim_et/xplat/executorch/runtime}/core/targets.bzl (100%) diff --git a/runtime/core/targets.bzl b/shim_et/xplat/executorch/runtime/core/targets.bzl similarity index 100% rename from runtime/core/targets.bzl rename to shim_et/xplat/executorch/runtime/core/targets.bzl From 16b438e14ea3105b935a246ff6b9eaf9f4e84f6c Mon Sep 17 00:00:00 2001 From: Jon Janzen Date: Thu, 30 Jul 2026 09:26:02 -0700 Subject: [PATCH 2/2] Fix load --- runtime/core/BUCK | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/core/BUCK b/runtime/core/BUCK index 1e8cc179228..2e37e95b3ba 100644 --- a/runtime/core/BUCK +++ b/runtime/core/BUCK @@ -1,7 +1,7 @@ # Any targets that should be shared between fbcode and xplat must be defined in # targets.bzl. This file can contain xplat-only targets. -load(":targets.bzl", "define_common_targets") +load("@fbsource//xplat/executorch/runtime/core:targets.bzl", "define_common_targets") oncall("executorch")