Skip to content

Commit

Permalink
[fuchsia] Fix snapshot BUILD.gn file for Fuchsia roll (flutter#8024)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanderso authored Mar 4, 2019
1 parent 4f54a1d commit 48bf480
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/snapshot/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,13 @@ bin_to_linkable("isolate_snapshot_instructions_linkable") {

bin_to_linkable("platform_strong_dill_linkable") {
deps = [
":strong_platform",
":kernel_platform_files",
]
input = "$root_out_dir/flutter_patched_sdk/platform_strong.dill"
if (is_fuchsia || is_fuchsia_host) {
input = "$root_out_dir/flutter_runner_patched_sdk/platform_strong.dill"
} else {
input = "$root_out_dir/flutter_patched_sdk/platform_strong.dill"
}
symbol = "kPlatformStrongDill"
size_symbol = "kPlatformStrongDillSize"
executable = false
Expand Down

0 comments on commit 48bf480

Please sign in to comment.