OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 235 matching lines...) Loading... |
246 # Yes(1) means set use the common linker options. | 246 # Yes(1) means set use the common linker options. |
247 'msvs_use_common_linker_extras%': 1, | 247 'msvs_use_common_linker_extras%': 1, |
248 | 248 |
249 # TODO(sgk): eliminate this if possible. | 249 # TODO(sgk): eliminate this if possible. |
250 # It would be nicer to support this via a setting in 'target_defaults' | 250 # It would be nicer to support this via a setting in 'target_defaults' |
251 # in chrome/app/locales/locales.gypi overriding the setting in the | 251 # in chrome/app/locales/locales.gypi overriding the setting in the |
252 # 'Debug' configuration in the 'target_defaults' dict below, | 252 # 'Debug' configuration in the 'target_defaults' dict below, |
253 # but that doesn't work as we'd like. | 253 # but that doesn't work as we'd like. |
254 'msvs_debug_link_incremental%': '2', | 254 'msvs_debug_link_incremental%': '2', |
255 | 255 |
| 256 # Needed for some of the largest modules. |
| 257 'msvs_debug_link_nonincremental%': '1', |
| 258 |
256 # This is the location of the sandbox binary. Chrome looks for this before | 259 # This is the location of the sandbox binary. Chrome looks for this before |
257 # running the zygote process. If found, and SUID, it will be used to | 260 # running the zygote process. If found, and SUID, it will be used to |
258 # sandbox the zygote process and, thus, all renderer processes. | 261 # sandbox the zygote process and, thus, all renderer processes. |
259 'linux_sandbox_path%': '', | 262 'linux_sandbox_path%': '', |
260 | 263 |
261 # Set this to true to enable SELinux support. | 264 # Set this to true to enable SELinux support. |
262 'selinux%': 0, | 265 'selinux%': 0, |
263 | 266 |
264 # Set this to true when building with Clang. | 267 # Set this to true when building with Clang. |
265 # See http://code.google.com/p/chromium/wiki/Clang for details. | 268 # See http://code.google.com/p/chromium/wiki/Clang for details. |
(...skipping 1239 matching lines...) Loading... |
1505 # and therefore SYMROOT, needs to be set at the project level. | 1508 # and therefore SYMROOT, needs to be set at the project level. |
1506 'SYMROOT': '<(DEPTH)/xcodebuild', | 1509 'SYMROOT': '<(DEPTH)/xcodebuild', |
1507 }, | 1510 }, |
1508 } | 1511 } |
1509 | 1512 |
1510 # Local Variables: | 1513 # Local Variables: |
1511 # tab-width:2 | 1514 # tab-width:2 |
1512 # indent-tabs-mode:nil | 1515 # indent-tabs-mode:nil |
1513 # End: | 1516 # End: |
1514 # vim: set expandtab tabstop=2 shiftwidth=2: | 1517 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |