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 1672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1683 'uk', 'vi', 'zh-CN', 'zh-TW', | 1683 'uk', 'vi', 'zh-CN', 'zh-TW', |
1684 ], | 1684 ], |
1685 | 1685 |
1686 # iOS SDK and deployment target support. The |ios_sdk| value is left | 1686 # iOS SDK and deployment target support. The |ios_sdk| value is left |
1687 # blank so that when it is set in the project files it will be the | 1687 # blank so that when it is set in the project files it will be the |
1688 # "current" iOS SDK. Forcing a specific SDK even if it is "current" | 1688 # "current" iOS SDK. Forcing a specific SDK even if it is "current" |
1689 # causes Xcode to spit out a warning for every single project file for | 1689 # causes Xcode to spit out a warning for every single project file for |
1690 # not using the "current" SDK. | 1690 # not using the "current" SDK. |
1691 'ios_sdk%': '', | 1691 'ios_sdk%': '', |
1692 'ios_sdk_path%': '', | 1692 'ios_sdk_path%': '', |
1693 'ios_deployment_target%': '7.0', | 1693 'ios_deployment_target%': '9.0', |
1694 | 1694 |
1695 'conditions': [ | 1695 'conditions': [ |
1696 # ios_product_name is set to the name of the .app bundle as it should | 1696 # ios_product_name is set to the name of the .app bundle as it should |
1697 # appear on disk. | 1697 # appear on disk. |
1698 ['branding=="Chrome"', { | 1698 ['branding=="Chrome"', { |
1699 'ios_product_name%': 'Chrome', | 1699 'ios_product_name%': 'Chrome', |
1700 }, { # else: branding!="Chrome" | 1700 }, { # else: branding!="Chrome" |
1701 'ios_product_name%': 'Chromium', | 1701 'ios_product_name%': 'Chromium', |
1702 }], | 1702 }], |
1703 ['branding=="Chrome" and buildtype=="Official"', { | 1703 ['branding=="Chrome" and buildtype=="Official"', { |
(...skipping 4696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6400 # settings in target dicts. SYMROOT is a special case, because many other | 6400 # settings in target dicts. SYMROOT is a special case, because many other |
6401 # Xcode variables depend on it, including variables such as | 6401 # Xcode variables depend on it, including variables such as |
6402 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6402 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6403 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6403 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6404 # files to appear (when present) in the UI as actual files and not red | 6404 # files to appear (when present) in the UI as actual files and not red |
6405 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6405 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6406 # and therefore SYMROOT, needs to be set at the project level. | 6406 # and therefore SYMROOT, needs to be set at the project level. |
6407 'SYMROOT': '<(DEPTH)/xcodebuild', | 6407 'SYMROOT': '<(DEPTH)/xcodebuild', |
6408 }, | 6408 }, |
6409 } | 6409 } |
OLD | NEW |