OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 # TODO(sgk): eliminate this if possible. | 388 # TODO(sgk): eliminate this if possible. |
389 # It would be nicer to support this via a setting in 'target_defaults' | 389 # It would be nicer to support this via a setting in 'target_defaults' |
390 # in chrome/app/locales/locales.gypi overriding the setting in the | 390 # in chrome/app/locales/locales.gypi overriding the setting in the |
391 # 'Debug' configuration in the 'target_defaults' dict below, | 391 # 'Debug' configuration in the 'target_defaults' dict below, |
392 # but that doesn't work as we'd like. | 392 # but that doesn't work as we'd like. |
393 'msvs_debug_link_incremental%': '2', | 393 'msvs_debug_link_incremental%': '2', |
394 | 394 |
395 # Needed for some of the largest modules. | 395 # Needed for some of the largest modules. |
396 'msvs_debug_link_nonincremental%': '1', | 396 'msvs_debug_link_nonincremental%': '1', |
397 | 397 |
| 398 # Turn on Use Library Dependency Inputs for linking chrome.dll on Windows |
| 399 # to get incremental linking to be faster in debug builds. |
| 400 'incremental_chrome_dll%': 0, |
| 401 |
398 # This is the location of the sandbox binary. Chrome looks for this before | 402 # This is the location of the sandbox binary. Chrome looks for this before |
399 # running the zygote process. If found, and SUID, it will be used to | 403 # running the zygote process. If found, and SUID, it will be used to |
400 # sandbox the zygote process and, thus, all renderer processes. | 404 # sandbox the zygote process and, thus, all renderer processes. |
401 'linux_sandbox_path%': '', | 405 'linux_sandbox_path%': '', |
402 | 406 |
403 # Set this to true to enable SELinux support. | 407 # Set this to true to enable SELinux support. |
404 'selinux%': 0, | 408 'selinux%': 0, |
405 | 409 |
406 # Set this to true when building with Clang. | 410 # Set this to true when building with Clang. |
407 # See http://code.google.com/p/chromium/wiki/Clang for details. | 411 # See http://code.google.com/p/chromium/wiki/Clang for details. |
(...skipping 1578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1986 # settings in target dicts. SYMROOT is a special case, because many other | 1990 # settings in target dicts. SYMROOT is a special case, because many other |
1987 # Xcode variables depend on it, including variables such as | 1991 # Xcode variables depend on it, including variables such as |
1988 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 1992 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
1989 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 1993 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
1990 # files to appear (when present) in the UI as actual files and not red | 1994 # files to appear (when present) in the UI as actual files and not red |
1991 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 1995 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
1992 # and therefore SYMROOT, needs to be set at the project level. | 1996 # and therefore SYMROOT, needs to be set at the project level. |
1993 'SYMROOT': '<(DEPTH)/xcodebuild', | 1997 'SYMROOT': '<(DEPTH)/xcodebuild', |
1994 }, | 1998 }, |
1995 } | 1999 } |
OLD | NEW |