Skip to content

Commit b751645

Browse files
authored
Unbrkea some buck builds (tensor_dimension_limit) (#8356)
Looks like I forgot to add these deps to a couple targets. Test Plan: buck2 build //runtime/core/exec_aten/util: buck2 build //runtime/core/exec_aten/testing_util:
1 parent eacbeb7 commit b751645

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

runtime/core/exec_aten/testing_util/targets.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def define_common_targets():
4343
"//executorch/runtime/core/exec_aten:lib" + aten_suffix,
4444
"//executorch/runtime/core/exec_aten/util:scalar_type_util" + aten_suffix,
4545
"//executorch/runtime/core/exec_aten/util:tensor_util" + aten_suffix,
46+
"//executorch/runtime/core/exec_aten/util:tensor_dimension_limit",
4647
],
4748
exported_external_deps = [
4849
"gmock" + aten_suffix,

runtime/core/exec_aten/util/targets.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def define_common_targets():
6060
],
6161
exported_preprocessor_flags = ["-DUSE_ATEN_LIB"] if aten_mode else [],
6262
exported_deps = [
63+
":tensor_dimension_limit",
6364
"//executorch/runtime/core:core",
6465
] + [
6566
"//executorch/runtime/core/exec_aten:lib" + aten_suffix,

0 commit comments

Comments
 (0)