From 517901475a9bd3c66bb3df5a52a9ecb3d3e77f10 Mon Sep 17 00:00:00 2001 From: Todd Volkert Date: Tue, 22 Nov 2016 10:36:31 -0800 Subject: [PATCH] Stop passing `use_libjpeg_turbo` arg in gn (flutter/engine#3252) --- engine/src/flutter/tools/gn | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/engine/src/flutter/tools/gn b/engine/src/flutter/tools/gn index eeb8d00c91..907c2e8a6f 100755 --- a/engine/src/flutter/tools/gn +++ b/engine/src/flutter/tools/gn @@ -65,9 +65,7 @@ def to_gn_args(args): gn_args['target_os'] = 'ios' gn_args['ios_deployment_target'] = '7.0' gn_args['use_ios_simulator'] = args.simulator - if args.simulator: - gn_args['use_libjpeg_turbo'] = False - else: + if not args.simulator: # Always use AOT on iOS devices until the interpreter stabilizes aot = True else: