Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 39e6901

Browse files
authored
Add recipe changelog (#13270)
Also add sources to one of the fuchsia targets to make sure that the files exist.
1 parent 6ab23d3 commit 39e6901

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

recipe_changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Recipe Changelog
2+
3+
### 21 Oct 2019
4+
5+
* Recipe Link: https://chromium-review.googlesource.com/c/chromium/tools/build/+/1872832
6+
* 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.

tools/fuchsia/fuchsia_archive.gni

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ template("fuchsia_archive") {
7676

7777
action("${target_name}_dir") {
7878
script = "$flutter_root/tools/fuchsia/copy_path.py"
79+
sources = copy_sources
7980
response_file_contents = rebase_path(copy_sources + copy_outputs)
8081
deps = pkg_dir_deps
8182
args = [ "--file-list={{response_file_name}}" ]
@@ -87,10 +88,12 @@ template("fuchsia_archive") {
8788
script = "$flutter_root/tools/fuchsia/gen_package.py"
8889
deps = pkg_dir_deps + [ ":${target_name}_dir" ]
8990
sources = copy_outputs
91+
9092
inputs = []
9193
if (defined(invoker.inputs)) {
92-
inputs = invoker.inputs
94+
inputs += invoker.inputs
9395
}
96+
9497
args = [
9598
"--pm-bin",
9699
rebase_path("//fuchsia/sdk/$host_os/tools/pm"),

0 commit comments

Comments
 (0)