| 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 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 931 # but that doesn't work as we'd like. | 931 # but that doesn't work as we'd like. |
| 932 'msvs_debug_link_incremental%': '2', | 932 'msvs_debug_link_incremental%': '2', |
| 933 | 933 |
| 934 # Needed for some of the largest modules. | 934 # Needed for some of the largest modules. |
| 935 'msvs_debug_link_nonincremental%': '1', | 935 'msvs_debug_link_nonincremental%': '1', |
| 936 | 936 |
| 937 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows | 937 # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows |
| 938 # to get incremental linking to be faster in debug builds. | 938 # to get incremental linking to be faster in debug builds. |
| 939 'incremental_chrome_dll%': '0', | 939 'incremental_chrome_dll%': '0', |
| 940 | 940 |
| 941 # Experimental setting to break chrome.dll in to multiple parts (currently | 941 # Experimental setting to break chrome.dll into multiple pieces based on |
| 942 # two, split primarily along browser/render lines). | 942 # process type. |
| 943 'chrome_split_dll%': '0', | 943 'chrome_multiple_dll%': '0', |
| 944 | 944 |
| 945 # The default settings for third party code for treating | 945 # The default settings for third party code for treating |
| 946 # warnings-as-errors. Ideally, this would not be required, however there | 946 # warnings-as-errors. Ideally, this would not be required, however there |
| 947 # is some third party code that takes a long time to fix/roll. So, this | 947 # is some third party code that takes a long time to fix/roll. So, this |
| 948 # flag allows us to have warnings as errors in general to prevent | 948 # flag allows us to have warnings as errors in general to prevent |
| 949 # regressions in most modules, while working on the bits that are | 949 # regressions in most modules, while working on the bits that are |
| 950 # remaining. | 950 # remaining. |
| 951 'win_third_party_warn_as_error%': 'true', | 951 'win_third_party_warn_as_error%': 'true', |
| 952 | 952 |
| 953 # This is the location of the sandbox binary. Chrome looks for this before | 953 # This is the location of the sandbox binary. Chrome looks for this before |
| (...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1861 'cflags_cc+': [ | 1861 'cflags_cc+': [ |
| 1862 '-frtti', | 1862 '-frtti', |
| 1863 '-gline-tables-only', | 1863 '-gline-tables-only', |
| 1864 '-fintercept-allocation-functions', | 1864 '-fintercept-allocation-functions', |
| 1865 ], | 1865 ], |
| 1866 'defines': ['TYPE_PROFILING'], | 1866 'defines': ['TYPE_PROFILING'], |
| 1867 'dependencies': [ | 1867 'dependencies': [ |
| 1868 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', | 1868 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler', |
| 1869 ], | 1869 ], |
| 1870 }], | 1870 }], |
| 1871 ['chrome_split_dll', { | 1871 ['chrome_multiple_dll', { |
| 1872 'variables': { | 1872 'defines': ['CHROME_MULTIPLE_DLL'], |
| 1873 'chrome_split_dll': '<!(python <(DEPTH)/tools/win/split_link/check_ins
talled.py)', | |
| 1874 }, | |
| 1875 'defines': ['CHROME_SPLIT_DLL'], | |
| 1876 }], | 1873 }], |
| 1877 ['OS=="linux" and clang==1 and host_arch=="ia32"', { | 1874 ['OS=="linux" and clang==1 and host_arch=="ia32"', { |
| 1878 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. | 1875 # TODO(dmikurube): Remove -Wno-sentinel when Clang/LLVM is fixed. |
| 1879 # See http://crbug.com/162818. | 1876 # See http://crbug.com/162818. |
| 1880 'cflags+': ['-Wno-sentinel'], | 1877 'cflags+': ['-Wno-sentinel'], |
| 1881 }], | 1878 }], |
| 1882 ['OS=="win" and "<(msbuild_toolset)"!=""', { | 1879 ['OS=="win" and "<(msbuild_toolset)"!=""', { |
| 1883 'msbuild_toolset': '<(msbuild_toolset)', | 1880 'msbuild_toolset': '<(msbuild_toolset)', |
| 1884 }], | 1881 }], |
| 1885 ['branding=="Chrome"', { | 1882 ['branding=="Chrome"', { |
| (...skipping 2757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4643 # settings in target dicts. SYMROOT is a special case, because many other | 4640 # settings in target dicts. SYMROOT is a special case, because many other |
| 4644 # Xcode variables depend on it, including variables such as | 4641 # Xcode variables depend on it, including variables such as |
| 4645 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4642 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4646 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4643 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4647 # files to appear (when present) in the UI as actual files and not red | 4644 # files to appear (when present) in the UI as actual files and not red |
| 4648 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4645 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4649 # and therefore SYMROOT, needs to be set at the project level. | 4646 # and therefore SYMROOT, needs to be set at the project level. |
| 4650 'SYMROOT': '<(DEPTH)/xcodebuild', | 4647 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4651 }, | 4648 }, |
| 4652 } | 4649 } |
| OLD | NEW |