Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions recipe_changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Recipe Changelog

### 21 Oct 2019

* Recipe Link: https://chromium-review.googlesource.com/c/chromium/tools/build/+/1872832
* Reason: `dart:kernel_compiler` is no longer a valid target after https://github.com/flutter/engine/pull/13158. This change is to account for that.
5 changes: 4 additions & 1 deletion tools/fuchsia/fuchsia_archive.gni
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ template("fuchsia_archive") {

action("${target_name}_dir") {
script = "$flutter_root/tools/fuchsia/copy_path.py"
sources = copy_sources
response_file_contents = rebase_path(copy_sources + copy_outputs)
deps = pkg_dir_deps
args = [ "--file-list={{response_file_name}}" ]
Expand All @@ -87,10 +88,12 @@ template("fuchsia_archive") {
script = "$flutter_root/tools/fuchsia/gen_package.py"
deps = pkg_dir_deps + [ ":${target_name}_dir" ]
sources = copy_outputs

inputs = []
if (defined(invoker.inputs)) {
inputs = invoker.inputs
inputs += invoker.inputs
}

args = [
"--pm-bin",
rebase_path("//fuchsia/sdk/$host_os/tools/pm"),
Expand Down