From 48bf4803eec7f84eb58c55bbdee57c2c0f1fb4d3 Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Mon, 4 Mar 2019 15:10:24 -0500 Subject: [PATCH] [fuchsia] Fix snapshot BUILD.gn file for Fuchsia roll (#8024) --- lib/snapshot/BUILD.gn | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/snapshot/BUILD.gn b/lib/snapshot/BUILD.gn index b12dfe4d6d..ca00ad71ef 100644 --- a/lib/snapshot/BUILD.gn +++ b/lib/snapshot/BUILD.gn @@ -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 -- GitLab