From 76f57fc2912c10bb3d178a0b743814da4ab82ae0 Mon Sep 17 00:00:00 2001 From: Chris Evans Date: Thu, 18 Aug 2022 17:26:53 +0100 Subject: [PATCH] Add analyze_snapshot as a build dependency (flutter/engine#35495) --- engine/src/flutter/BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/engine/src/flutter/BUILD.gn b/engine/src/flutter/BUILD.gn index 97c2c4fe9c3..c775e52733b 100644 --- a/engine/src/flutter/BUILD.gn +++ b/engine/src/flutter/BUILD.gn @@ -90,7 +90,7 @@ group("flutter") { } } - # If enbaled, compile the SDK / snapshot. + # If enabled, compile the SDK / snapshot. if (!is_fuchsia) { public_deps += [ "//flutter/lib/snapshot:generate_snapshot_bins" ] @@ -104,6 +104,9 @@ group("flutter") { # gen_snapshot for the host and not the target. "//third_party/dart/runtime/bin:gen_snapshot", + # Built alongside gen_snapshot for 64 bit targets + "//third_party/dart/runtime/bin:analyze_snapshot", + # Impeller artifacts - compiler and libtessellator "//flutter/impeller/compiler:impellerc", "//flutter/impeller/tessellator:tessellator_shared",