Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add action_type = dart_executable metadata
  • Loading branch information
cbracken committed Sep 10, 2024
commit df33a5543a49385105dba58b75ba8b1699a38304
6 changes: 6 additions & 0 deletions build/dart/rules.gni
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,9 @@ template("dart_executable") {
args = [ dart ]
args += exe_vm_args
args += [ rebase_path(main_dart) ]
metadata = {
action_type = [ "dart_executable" ]
}
}
} else {
dart_action(target_name) {
Expand All @@ -504,6 +507,9 @@ template("dart_executable") {
outputs = [ output ]
vm_args = exe_vm_args
args = []
metadata = {
action_type = [ "dart_executable" ]
}
Copy link
Member Author

Choose a reason for hiding this comment

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

I'll need to send a patch upstream to copy this over onto the underlying action target in the dart_action template.

}
}
}