From 6fbbfe18e852d77a2d43fc4cc5a3f82117772134 Mon Sep 17 00:00:00 2001 From: Kaushik Iska Date: Sun, 15 Sep 2019 16:22:35 -0700 Subject: [PATCH] Fix flutter runner paths (#12289) --- lib/snapshot/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/snapshot/BUILD.gn b/lib/snapshot/BUILD.gn index 201df644a3..ae775a2aeb 100644 --- a/lib/snapshot/BUILD.gn +++ b/lib/snapshot/BUILD.gn @@ -23,7 +23,7 @@ compiled_action("generate_snapshot_bin") { tool = "//third_party/dart/runtime/bin:gen_snapshot" if (is_fuchsia || is_fuchsia_host) { - platform_kernel = "//prebuilt/gallium/platform_strong.dill" + platform_kernel = "//prebuilt/gallium/flutter/artifacts/platform_strong.dill" } else { platform_kernel = "$root_out_dir/flutter_patched_sdk/platform_strong.dill" } @@ -218,7 +218,7 @@ bin_to_linkable("platform_strong_dill_linkable") { ":kernel_platform_files", ] if (is_fuchsia || is_fuchsia_host) { - input = "//prebuilt/gallium/platform_strong.dill" + input = "//prebuilt/gallium/flutter/artifacts/platform_strong.dill" } else { input = "$root_out_dir/flutter_patched_sdk/platform_strong.dill" } -- GitLab