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 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 # but that doesn't work as we'd like. | 881 # but that doesn't work as we'd like. |
882 'msvs_debug_link_incremental%': '2', | 882 'msvs_debug_link_incremental%': '2', |
883 | 883 |
884 # Needed for some of the largest modules. | 884 # Needed for some of the largest modules. |
885 'msvs_debug_link_nonincremental%': '1', | 885 'msvs_debug_link_nonincremental%': '1', |
886 | 886 |
887 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows | 887 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows |
888 # to get incremental linking to be faster in debug builds. | 888 # to get incremental linking to be faster in debug builds. |
889 'incremental_chrome_dll%': '0', | 889 'incremental_chrome_dll%': '0', |
890 | 890 |
| 891 # Experimental setting to break chrome.dll in to chrome_browser.dll and |
| 892 # chrome_child.dll. |
| 893 'chrome_split_dll%': '0', |
| 894 |
891 # The default settings for third party code for treating | 895 # The default settings for third party code for treating |
892 # warnings-as-errors. Ideally, this would not be required, however there | 896 # warnings-as-errors. Ideally, this would not be required, however there |
893 # is some third party code that takes a long time to fix/roll. So, this | 897 # is some third party code that takes a long time to fix/roll. So, this |
894 # flag allows us to have warnings as errors in general to prevent | 898 # flag allows us to have warnings as errors in general to prevent |
895 # regressions in most modules, while working on the bits that are | 899 # regressions in most modules, while working on the bits that are |
896 # remaining. | 900 # remaining. |
897 'win_third_party_warn_as_error%': 'true', | 901 'win_third_party_warn_as_error%': 'true', |
898 | 902 |
899 # This is the location of the sandbox binary. Chrome looks for this before | 903 # This is the location of the sandbox binary. Chrome looks for this before |
900 # running the zygote process. If found, and SUID, it will be used to | 904 # running the zygote process. If found, and SUID, it will be used to |
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1802 'cflags_cc+': [ | 1806 'cflags_cc+': [ |
1803 '-frtti', | 1807 '-frtti', |
1804 '-gline-tables-only', | 1808 '-gline-tables-only', |
1805 '-fintercept-allocation-functions', | 1809 '-fintercept-allocation-functions', |
1806 ], | 1810 ], |
1807 'defines': ['TYPE_PROFILING'], | 1811 'defines': ['TYPE_PROFILING'], |
1808 'dependencies': [ | 1812 'dependencies': [ |
1809 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', | 1813 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', |
1810 ], | 1814 ], |
1811 }], | 1815 }], |
| 1816 ['chrome_split_dll', { |
| 1817 'defines': ['CHROME_SPLIT_DLL'], |
| 1818 }], |
1812 ['OS=="linux" and clang==1 and host_arch=="ia32"', { | 1819 ['OS=="linux" and clang==1 and host_arch=="ia32"', { |
1813 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. | 1820 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. |
1814 # See http://crbug.com/162818. | 1821 # See http://crbug.com/162818. |
1815 'cflags+': ['-Wno-sentinel'], | 1822 'cflags+': ['-Wno-sentinel'], |
1816 }], | 1823 }], |
1817 ['OS=="win" and "<(msbuild_toolset)"!=""', { | 1824 ['OS=="win" and "<(msbuild_toolset)"!=""', { |
1818 'msbuild_toolset': '<(msbuild_toolset)', | 1825 'msbuild_toolset': '<(msbuild_toolset)', |
1819 }], | 1826 }], |
1820 ['branding=="Chrome"', { | 1827 ['branding=="Chrome"', { |
1821 'defines': ['GOOGLE_CHROME_BUILD'], | 1828 'defines': ['GOOGLE_CHROME_BUILD'], |
(...skipping 2614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4436 # settings in target dicts. SYMROOT is a special case, because many other | 4443 # settings in target dicts. SYMROOT is a special case, because many other |
4437 # Xcode variables depend on it, including variables such as | 4444 # Xcode variables depend on it, including variables such as |
4438 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4445 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4439 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4446 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4440 # files to appear (when present) in the UI as actual files and not red | 4447 # files to appear (when present) in the UI as actual files and not red |
4441 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4448 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4442 # and therefore SYMROOT, needs to be set at the project level. | 4449 # and therefore SYMROOT, needs to be set at the project level. |
4443 'SYMROOT': '<(DEPTH)/xcodebuild', | 4450 'SYMROOT': '<(DEPTH)/xcodebuild', |
4444 }, | 4451 }, |
4445 } | 4452 } |
OLD | NEW |