Skip to content

Commit 48e866b

Browse files
authored
fix binary_ops buck deps (#11379)
Found that these seem to be missing while building internally
1 parent f1b7738 commit 48e866b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

kernels/optimized/cpu/targets.bzl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,12 @@ def define_common_targets():
4545
srcs = ["binary_ops.cpp"],
4646
exported_headers = ["binary_ops.h"],
4747
visibility = ["//executorch/kernels/optimized/cpu/...", "@EXECUTORCH_CLIENTS",],
48-
exported_deps = ["//executorch/runtime/core:core"],
48+
exported_deps = [
49+
"//executorch/runtime/core:core",
50+
"//executorch/kernels/optimized:libvec",
51+
"//executorch/kernels/portable/cpu:scalar_utils",
52+
"//executorch/kernels/portable/cpu/util:broadcast_util",
53+
],
4954
)
5055

5156
runtime.cxx_library(

0 commit comments

Comments
 (0)