| 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 1718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1729 # compiler bug, so we use /Ob1 instead. | 1729 # compiler bug, so we use /Ob1 instead. |
| 1730 'win_release_InlineFunctionExpansion': '1', | 1730 'win_release_InlineFunctionExpansion': '1', |
| 1731 'win_release_OmitFramePointers': '0', | 1731 'win_release_OmitFramePointers': '0', |
| 1732 # Ditto for debug, to support bumping win_debug_Optimization. | 1732 # Ditto for debug, to support bumping win_debug_Optimization. |
| 1733 'win_debug_InlineFunctionExpansion': 0, | 1733 'win_debug_InlineFunctionExpansion': 0, |
| 1734 'win_debug_OmitFramePointers': 0, | 1734 'win_debug_OmitFramePointers': 0, |
| 1735 # Keep the code under #ifndef NVALGRIND. | 1735 # Keep the code under #ifndef NVALGRIND. |
| 1736 'release_valgrind_build': 1, | 1736 'release_valgrind_build': 1, |
| 1737 }], | 1737 }], |
| 1738 | 1738 |
| 1739 # Enable RLZ on Win, Mac and ChromeOS. | 1739 # Enable RLZ on Win, Mac, iOS and ChromeOS. |
| 1740 ['branding=="Chrome" and (OS=="win" or OS=="mac" or chromeos==1)', { | 1740 ['branding=="Chrome" and (OS=="win" or OS=="mac" or OS=="ios" or chromeos=
=1)', { |
| 1741 'enable_rlz%': 1, | 1741 'enable_rlz%': 1, |
| 1742 }], | 1742 }], |
| 1743 | 1743 |
| 1744 # Set default compiler flags depending on ARM version. | 1744 # Set default compiler flags depending on ARM version. |
| 1745 ['arm_version==5 and android_webview_build==0', { | 1745 ['arm_version==5 and android_webview_build==0', { |
| 1746 # Flags suitable for Android emulator | 1746 # Flags suitable for Android emulator |
| 1747 'arm_arch%': 'armv5te', | 1747 'arm_arch%': 'armv5te', |
| 1748 'arm_tune%': 'xscale', | 1748 'arm_tune%': 'xscale', |
| 1749 'arm_fpu%': '', | 1749 'arm_fpu%': '', |
| 1750 'arm_float_abi%': 'soft', | 1750 'arm_float_abi%': 'soft', |
| (...skipping 2972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4723 # settings in target dicts. SYMROOT is a special case, because many other | 4723 # settings in target dicts. SYMROOT is a special case, because many other |
| 4724 # Xcode variables depend on it, including variables such as | 4724 # Xcode variables depend on it, including variables such as |
| 4725 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4725 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4726 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4726 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4727 # files to appear (when present) in the UI as actual files and not red | 4727 # files to appear (when present) in the UI as actual files and not red |
| 4728 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4728 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4729 # and therefore SYMROOT, needs to be set at the project level. | 4729 # and therefore SYMROOT, needs to be set at the project level. |
| 4730 'SYMROOT': '<(DEPTH)/xcodebuild', | 4730 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4731 }, | 4731 }, |
| 4732 } | 4732 } |
| OLD | NEW |