Skip to content

Commit 9e6ad61

Browse files
authored
Fix buck cell for xplat builds.
Differential Revision: D83441105 Pull Request resolved: #14651
1 parent 2bf2de3 commit 9e6ad61

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

runtime/core/portable_type/c10/c10/targets.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ def define_common_targets():
7878
] if not runtime.is_oss else [],
7979
}),
8080
xplat_exported_deps = [
81-
"//xplat/caffe2:aten_header",
82-
"//xplat/caffe2/c10:c10_headers",
81+
"fbsource//xplat/caffe2:aten_header",
82+
"fbsource//xplat/caffe2/c10:c10_headers",
8383
] + select({
84-
"DEFAULT": ["//xplat/caffe2:generated_aten_config_header"],
85-
"ovr_config//build_mode:arvr_mode": ["//xplat/caffe2:ovrsource_aten_Config.h"],
84+
"DEFAULT": ["fbsource//xplat/caffe2:generated_aten_config_header"],
85+
"ovr_config//build_mode:arvr_mode": ["fbsource//xplat/caffe2:ovrsource_aten_Config.h"],
8686
}) + get_sleef_deps(),
8787
fbcode_exported_deps = ([
8888
"//caffe2:aten-headers-cpu",

shim_et/xplat/executorch/backends/xnnpack/third-party/third_party_libs.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
55
# second element is the OSS dep
66
_THIRD_PARTY_LIBS = {
77
"FP16": ["fbsource//xplat/third-party/FP16:FP16Fbcode", "//backends/xnnpack/third-party:FP16"],
8-
"FXdiv": ["//xplat/third-party/FXdiv:FXdiv", "//backends/xnnpack/third-party:FXdiv"],
9-
"XNNPACK": ["//xplat/third-party/XNNPACK:XNNPACK", "//backends/xnnpack/third-party:XNNPACK"],
10-
"clog": ["//xplat/third-party/clog:clog", "//backends/xnnpack/third-party:clog"],
8+
"FXdiv": ["fbsource//xplat/third-party/FXdiv:FXdiv", "//backends/xnnpack/third-party:FXdiv"],
9+
"XNNPACK": ["fbsource//xplat/third-party/XNNPACK:XNNPACK", "//backends/xnnpack/third-party:XNNPACK"],
10+
"clog": ["fbsource//xplat/third-party/clog:clog", "//backends/xnnpack/third-party:clog"],
1111
"cpuinfo": ["fbsource//third-party/cpuinfo:cpuinfo", "//backends/xnnpack/third-party:cpuinfo"],
12-
"pthreadpool": ["//xplat/third-party/pthreadpool:pthreadpool", "//backends/xnnpack/third-party:pthreadpool"],
13-
"pthreadpool_header": ["//xplat/third-party/pthreadpool:pthreadpool_header", "//backends/xnnpack/third-party:pthreadpool_header"],
12+
"pthreadpool": ["fbsource//xplat/third-party/pthreadpool:pthreadpool", "//backends/xnnpack/third-party:pthreadpool"],
13+
"pthreadpool_header": ["fbsource//xplat/third-party/pthreadpool:pthreadpool_header", "//backends/xnnpack/third-party:pthreadpool_header"],
1414
}
1515

1616
def third_party_dep(name):

0 commit comments

Comments
 (0)