Skip to content
Closed
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
5 changes: 1 addition & 4 deletions mojo/mojo_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,10 @@ def _mojo_library_implementation(ctx):
},
use_default_shell_env = True,
toolchain = "//:toolchain_type",
execution_requirements = {
"supports-path-mapping": "1",
},
)

transitive_runfiles = []
for target in ctx.attr.data:
for target in ctx.attr.data + ctx.attr.deps:
Copy link
Contributor

Choose a reason for hiding this comment

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

what's the case where this is needed at runtime later?

transitive_runfiles.append(target[DefaultInfo].default_runfiles)

return [
Expand Down