| 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 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 # but that doesn't work as we'd like. | 893 # but that doesn't work as we'd like. |
| 894 'msvs_debug_link_incremental%': '2', | 894 'msvs_debug_link_incremental%': '2', |
| 895 | 895 |
| 896 # Needed for some of the largest modules. | 896 # Needed for some of the largest modules. |
| 897 'msvs_debug_link_nonincremental%': '1', | 897 'msvs_debug_link_nonincremental%': '1', |
| 898 | 898 |
| 899 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows | 899 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows |
| 900 # to get incremental linking to be faster in debug builds. | 900 # to get incremental linking to be faster in debug builds. |
| 901 'incremental_chrome_dll%': '0', | 901 'incremental_chrome_dll%': '0', |
| 902 | 902 |
| 903 # Experimental setting to break chrome.dll in to chrome_browser.dll and |
| 904 # chrome_child.dll. |
| 905 'chrome_split_dll%': '0', |
| 906 |
| 903 # The default settings for third party code for treating | 907 # The default settings for third party code for treating |
| 904 # warnings-as-errors. Ideally, this would not be required, however there | 908 # warnings-as-errors. Ideally, this would not be required, however there |
| 905 # is some third party code that takes a long time to fix/roll. So, this | 909 # is some third party code that takes a long time to fix/roll. So, this |
| 906 # flag allows us to have warnings as errors in general to prevent | 910 # flag allows us to have warnings as errors in general to prevent |
| 907 # regressions in most modules, while working on the bits that are | 911 # regressions in most modules, while working on the bits that are |
| 908 # remaining. | 912 # remaining. |
| 909 'win_third_party_warn_as_error%': 'true', | 913 'win_third_party_warn_as_error%': 'true', |
| 910 | 914 |
| 911 # This is the location of the sandbox binary. Chrome looks for this before | 915 # This is the location of the sandbox binary. Chrome looks for this before |
| 912 # running the zygote process. If found, and SUID, it will be used to | 916 # 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... |
| 1814 'cflags_cc+': [ | 1818 'cflags_cc+': [ |
| 1815 '-frtti', | 1819 '-frtti', |
| 1816 '-gline-tables-only', | 1820 '-gline-tables-only', |
| 1817 '-fintercept-allocation-functions', | 1821 '-fintercept-allocation-functions', |
| 1818 ], | 1822 ], |
| 1819 'defines': ['TYPE_PROFILING'], | 1823 'defines': ['TYPE_PROFILING'], |
| 1820 'dependencies': [ | 1824 'dependencies': [ |
| 1821 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', | 1825 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', |
| 1822 ], | 1826 ], |
| 1823 }], | 1827 }], |
| 1828 ['chrome_split_dll', { |
| 1829 'defines': ['CHROME_SPLIT_DLL'], |
| 1830 }], |
| 1824 ['OS=="linux" and clang==1 and host_arch=="ia32"', { | 1831 ['OS=="linux" and clang==1 and host_arch=="ia32"', { |
| 1825 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. | 1832 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. |
| 1826 # See http://crbug.com/162818. | 1833 # See http://crbug.com/162818. |
| 1827 'cflags+': ['-Wno-sentinel'], | 1834 'cflags+': ['-Wno-sentinel'], |
| 1828 }], | 1835 }], |
| 1829 ['OS=="win" and "<(msbuild_toolset)"!=""', { | 1836 ['OS=="win" and "<(msbuild_toolset)"!=""', { |
| 1830 'msbuild_toolset': '<(msbuild_toolset)', | 1837 'msbuild_toolset': '<(msbuild_toolset)', |
| 1831 }], | 1838 }], |
| 1832 ['branding=="Chrome"', { | 1839 ['branding=="Chrome"', { |
| 1833 'defines': ['GOOGLE_CHROME_BUILD'], | 1840 'defines': ['GOOGLE_CHROME_BUILD'], |
| (...skipping 2610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4444 # settings in target dicts. SYMROOT is a special case, because many other | 4451 # settings in target dicts. SYMROOT is a special case, because many other |
| 4445 # Xcode variables depend on it, including variables such as | 4452 # Xcode variables depend on it, including variables such as |
| 4446 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4453 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4447 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4454 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4448 # files to appear (when present) in the UI as actual files and not red | 4455 # files to appear (when present) in the UI as actual files and not red |
| 4449 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4456 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4450 # and therefore SYMROOT, needs to be set at the project level. | 4457 # and therefore SYMROOT, needs to be set at the project level. |
| 4451 'SYMROOT': '<(DEPTH)/xcodebuild', | 4458 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4452 }, | 4459 }, |
| 4453 } | 4460 } |
| OLD | NEW |