| 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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 # but that doesn't work as we'd like. | 903 # but that doesn't work as we'd like. |
| 904 'msvs_debug_link_incremental%': '2', | 904 'msvs_debug_link_incremental%': '2', |
| 905 | 905 |
| 906 # Needed for some of the largest modules. | 906 # Needed for some of the largest modules. |
| 907 'msvs_debug_link_nonincremental%': '1', | 907 'msvs_debug_link_nonincremental%': '1', |
| 908 | 908 |
| 909 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows | 909 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows |
| 910 # to get incremental linking to be faster in debug builds. | 910 # to get incremental linking to be faster in debug builds. |
| 911 'incremental_chrome_dll%': '0', | 911 'incremental_chrome_dll%': '0', |
| 912 | 912 |
| 913 # Experimental setting to break chrome.dll in to chrome_browser.dll and | 913 # Experimental setting to break chrome.dll in to multiple parts (currently |
| 914 # chrome_child.dll. | 914 # two, split primarily along browser/render lines). |
| 915 'chrome_split_dll%': '0', | 915 'chrome_split_dll%': '0', |
| 916 | 916 |
| 917 # The default settings for third party code for treating | 917 # The default settings for third party code for treating |
| 918 # warnings-as-errors. Ideally, this would not be required, however there | 918 # warnings-as-errors. Ideally, this would not be required, however there |
| 919 # is some third party code that takes a long time to fix/roll. So, this | 919 # is some third party code that takes a long time to fix/roll. So, this |
| 920 # flag allows us to have warnings as errors in general to prevent | 920 # flag allows us to have warnings as errors in general to prevent |
| 921 # regressions in most modules, while working on the bits that are | 921 # regressions in most modules, while working on the bits that are |
| 922 # remaining. | 922 # remaining. |
| 923 'win_third_party_warn_as_error%': 'true', | 923 'win_third_party_warn_as_error%': 'true', |
| 924 | 924 |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1829 '-frtti', | 1829 '-frtti', |
| 1830 '-gline-tables-only', | 1830 '-gline-tables-only', |
| 1831 '-fintercept-allocation-functions', | 1831 '-fintercept-allocation-functions', |
| 1832 ], | 1832 ], |
| 1833 'defines': ['TYPE_PROFILING'], | 1833 'defines': ['TYPE_PROFILING'], |
| 1834 'dependencies': [ | 1834 'dependencies': [ |
| 1835 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', | 1835 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', |
| 1836 ], | 1836 ], |
| 1837 }], | 1837 }], |
| 1838 ['chrome_split_dll', { | 1838 ['chrome_split_dll', { |
| 1839 'defines': ['CHROME_SPLIT_DLL'], | 1839 'variables': { |
| 1840 'chrome_split_dll': '<!(python <(DEPTH)/tools/win/split_link/check_ins
talled.py)', |
| 1841 } |
| 1840 }], | 1842 }], |
| 1841 ['OS=="linux" and clang==1 and host_arch=="ia32"', { | 1843 ['OS=="linux" and clang==1 and host_arch=="ia32"', { |
| 1842 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. | 1844 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. |
| 1843 # See http://crbug.com/162818. | 1845 # See http://crbug.com/162818. |
| 1844 'cflags+': ['-Wno-sentinel'], | 1846 'cflags+': ['-Wno-sentinel'], |
| 1845 }], | 1847 }], |
| 1846 ['OS=="win" and "<(msbuild_toolset)"!=""', { | 1848 ['OS=="win" and "<(msbuild_toolset)"!=""', { |
| 1847 'msbuild_toolset': '<(msbuild_toolset)', | 1849 'msbuild_toolset': '<(msbuild_toolset)', |
| 1848 }], | 1850 }], |
| 1849 ['branding=="Chrome"', { | 1851 ['branding=="Chrome"', { |
| (...skipping 2615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4465 # settings in target dicts. SYMROOT is a special case, because many other | 4467 # settings in target dicts. SYMROOT is a special case, because many other |
| 4466 # Xcode variables depend on it, including variables such as | 4468 # Xcode variables depend on it, including variables such as |
| 4467 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4469 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4468 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4470 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4469 # files to appear (when present) in the UI as actual files and not red | 4471 # files to appear (when present) in the UI as actual files and not red |
| 4470 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4472 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4471 # and therefore SYMROOT, needs to be set at the project level. | 4473 # and therefore SYMROOT, needs to be set at the project level. |
| 4472 'SYMROOT': '<(DEPTH)/xcodebuild', | 4474 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4473 }, | 4475 }, |
| 4474 } | 4476 } |
| OLD | NEW |