Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(709)

Side by Side Diff: build/config/ios/ios_sdk.gni

Issue 766573003: gn format //build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/config/ios/BUILD.gn ('k') | build/config/linux/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 declare_args() { 5 declare_args() {
6 # SDK path to use. When empty this will use the default SDK based on the 6 # SDK path to use. When empty this will use the default SDK based on the
7 # value of use_ios_simulator. 7 # value of use_ios_simulator.
8 ios_sdk_path = "" 8 ios_sdk_path = ""
9 9
10 # Set to true when targeting a simulator build on iOS. False means that the 10 # Set to true when targeting a simulator build on iOS. False means that the
11 # target is for running on the device. The default value is to use the 11 # target is for running on the device. The default value is to use the
12 # Simulator except when targeting GYP's Xcode builds (for compat with the 12 # Simulator except when targeting GYP's Xcode builds (for compat with the
13 # existing GYP build). 13 # existing GYP build).
14 use_ios_simulator = true 14 use_ios_simulator = true
15 15
16 # Version of iOS that we're targeting. 16 # Version of iOS that we're targeting.
17 ios_deployment_target = "6.0" 17 ios_deployment_target = "6.0"
18 } 18 }
19 19
20 if (ios_sdk_path == "") { 20 if (ios_sdk_path == "") {
21 # Compute default target. 21 # Compute default target.
22 if (use_ios_simulator) { 22 if (use_ios_simulator) {
23 _ios_sdk_to_query = "iphonesimulator" 23 _ios_sdk_to_query = "iphonesimulator"
24 } else { 24 } else {
25 _ios_sdk_to_query = "iphoneos" 25 _ios_sdk_to_query = "iphoneos"
26 } 26 }
27 _ios_sdk_result = 27 _ios_sdk_result =
28 exec_script("ios_sdk.py", [ _ios_sdk_to_query ], "list lines") 28 exec_script("ios_sdk.py", [ _ios_sdk_to_query ], "list lines")
29 ios_sdk_path = _ios_sdk_result[0] 29 ios_sdk_path = _ios_sdk_result[0]
30 } 30 }
OLDNEW
« no previous file with comments | « build/config/ios/BUILD.gn ('k') | build/config/linux/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698