Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions kernels/portable/cpu/util/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,8 @@ def define_common_targets():
exported_headers = ["stack_util.h"],
deps = [
"//executorch/kernels/portable/cpu/util:copy_ops_util",
],
exported_deps = [
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why exported_deps rather than adding it to the list of deps?

Copy link
Contributor Author

@jathu jathu Sep 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is due to GitHub's poor diff UI, but it currently exists in deps. I am moving it to external_deps

runtime.cxx_library(
name = "stack_util",
srcs = ["stack_util.cpp"],
exported_headers = ["stack_util.h"],
deps = [
"//executorch/kernels/portable/cpu/util:copy_ops_util",
"//executorch/runtime/kernel:kernel_includes",
],
visibility = ["//executorch/kernels/portable/cpu/...", "@EXECUTORCH_CLIENTS"],
)

"//executorch/runtime/kernel:kernel_includes",
],
visibility = ["//executorch/kernels/portable/cpu/...", "@EXECUTORCH_CLIENTS"],
Expand Down
Loading