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