| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # IMPORTANT: | 5 # IMPORTANT: |
| 6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
| 7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
| 8 { | 8 { |
| 9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1039 # overridden from the command line the same way it is for a Mac build. | 1039 # overridden from the command line the same way it is for a Mac build. |
| 1040 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)', | 1040 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py 10.6)', |
| 1041 | 1041 |
| 1042 # iOS SDK and deployment target support. The iOS 5.0 SDK is actually | 1042 # iOS SDK and deployment target support. The iOS 5.0 SDK is actually |
| 1043 # what is required, but the value is left blank so when it is set in | 1043 # what is required, but the value is left blank so when it is set in |
| 1044 # the project files it will be the "current" iOS SDK. Forcing 5.0 | 1044 # the project files it will be the "current" iOS SDK. Forcing 5.0 |
| 1045 # even though it is "current" causes Xcode to spit out a warning for | 1045 # even though it is "current" causes Xcode to spit out a warning for |
| 1046 # every single project file for not using the "current" SDK. | 1046 # every single project file for not using the "current" SDK. |
| 1047 'ios_sdk%': '', | 1047 'ios_sdk%': '', |
| 1048 'ios_sdk_path%': '', | 1048 'ios_sdk_path%': '', |
| 1049 'ios_deployment_target%': '4.3', | 1049 'ios_deployment_target%': '5.0', |
| 1050 | 1050 |
| 1051 'conditions': [ | 1051 'conditions': [ |
| 1052 # ios_product_name is set to the name of the .app bundle as it should | 1052 # ios_product_name is set to the name of the .app bundle as it should |
| 1053 # appear on disk. | 1053 # appear on disk. |
| 1054 ['branding=="Chrome"', { | 1054 ['branding=="Chrome"', { |
| 1055 'ios_product_name%': 'Chrome', | 1055 'ios_product_name%': 'Chrome', |
| 1056 }, { # else: branding!="Chrome" | 1056 }, { # else: branding!="Chrome" |
| 1057 'ios_product_name%': 'Chromium', | 1057 'ios_product_name%': 'Chromium', |
| 1058 }], | 1058 }], |
| 1059 ['branding=="Chrome" and buildtype=="Official"', { | 1059 ['branding=="Chrome" and buildtype=="Official"', { |
| (...skipping 2894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3954 # settings in target dicts. SYMROOT is a special case, because many other | 3954 # settings in target dicts. SYMROOT is a special case, because many other |
| 3955 # Xcode variables depend on it, including variables such as | 3955 # Xcode variables depend on it, including variables such as |
| 3956 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3956 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3957 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3957 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3958 # files to appear (when present) in the UI as actual files and not red | 3958 # files to appear (when present) in the UI as actual files and not red |
| 3959 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3959 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3960 # and therefore SYMROOT, needs to be set at the project level. | 3960 # and therefore SYMROOT, needs to be set at the project level. |
| 3961 'SYMROOT': '<(DEPTH)/xcodebuild', | 3961 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3962 }, | 3962 }, |
| 3963 } | 3963 } |
| OLD | NEW |