From 1cdf6b165fff694c8c732605c552a7f70fb6db49 Mon Sep 17 00:00:00 2001 From: Martin Kustermann Date: Wed, 2 May 2018 15:00:39 +0200 Subject: [PATCH] Build the entry_points_json_files in debug mode as well The "flutter build apk/aot" command accepts all three modes (--debug, --profile, --release). This implies we need the entry_points_json_files target also in "debug" mode. --- BUILD.gn | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index b5be7064e977d..670040f4e9c14 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -17,9 +17,7 @@ group("flutter") { public_deps += [ "$flutter_root/shell/testing" ] } - if (flutter_runtime_mode != "debug") { - public_deps += [ "$flutter_root/lib/snapshot:entry_points_json_files" ] - } + public_deps += [ "$flutter_root/lib/snapshot:entry_points_json_files" ] if (!is_fuchsia && !is_fuchsia_host) { if (current_toolchain == host_toolchain) {