From 1f765cdba7aee9d0a953043209b05d2c59270391 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Wed, 7 Jun 2017 13:47:13 -0700 Subject: [PATCH] Don't override ios deployment target in gn (#3751) Use the value specified in build/config/ios/ios_sdk.gni in the buildroot repo. Updates buildroot to 4d1c1fd7103d6daba559e456a6a68e4385bb28f1 --- DEPS | 2 +- tools/gn | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/DEPS b/DEPS index 97ad8ab1f..32f66ee8f 100644 --- a/DEPS +++ b/DEPS @@ -54,7 +54,7 @@ allowed_hosts = [ ] deps = { - 'src': 'https://github.com/flutter/buildroot.git' + '@' + '49dc17e37e24ae153a3d2426c958254be1904562', + 'src': 'https://github.com/flutter/buildroot.git' + '@' + '4d1c1fd7103d6daba559e456a6a68e4385bb28f1', # Fuchsia compatibility # diff --git a/tools/gn b/tools/gn index a7ed523e4..6c49d1beb 100755 --- a/tools/gn +++ b/tools/gn @@ -75,7 +75,6 @@ def to_gn_args(args): gn_args['target_os'] = 'android' elif args.target_os == 'ios': gn_args['target_os'] = 'ios' - gn_args['ios_deployment_target'] = '7.0' gn_args['use_ios_simulator'] = args.simulator if not args.simulator: aot = True -- GitLab