From a6147864a6e06cdd1c3be9c6f0f41e44ac1d7c1b Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Mon, 20 Jul 2015 15:54:03 -0700 Subject: [PATCH] Fix gn --ios Currently crashes with a python exception due to typo. R=abarth@google.com --- sky/tools/gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sky/tools/gn b/sky/tools/gn index 8a2c98c39..72cc38d15 100755 --- a/sky/tools/gn +++ b/sky/tools/gn @@ -37,9 +37,9 @@ def to_gn_args(args): gn_args["target_os"] = "ios" gn_args["ios_deployment_target"] = "7.0" gn_args["clang_use_chrome_plugins"] = False - if config.simulator: + if args.simulator: gn_args["use_libjpeg_turbo"] = False - gn_args["use_ios_simulator"] = config.simulator + gn_args["use_ios_simulator"] = args.simulator else: gn_args["use_aura"] = False gn_args["use_glib"] = False -- GitLab