| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 # in chrome/app/locales/locales.gypi overriding the setting in the | 406 # in chrome/app/locales/locales.gypi overriding the setting in the |
| 407 # 'Debug' configuration in the 'target_defaults' dict below, | 407 # 'Debug' configuration in the 'target_defaults' dict below, |
| 408 # but that doesn't work as we'd like. | 408 # but that doesn't work as we'd like. |
| 409 'msvs_debug_link_incremental%': '2', | 409 'msvs_debug_link_incremental%': '2', |
| 410 | 410 |
| 411 # Needed for some of the largest modules. | 411 # Needed for some of the largest modules. |
| 412 'msvs_debug_link_nonincremental%': '1', | 412 'msvs_debug_link_nonincremental%': '1', |
| 413 | 413 |
| 414 # Turn on Use Library Dependency Inputs for linking chrome.dll on Windows | 414 # Turn on Use Library Dependency Inputs for linking chrome.dll on Windows |
| 415 # to get incremental linking to be faster in debug builds. | 415 # to get incremental linking to be faster in debug builds. |
| 416 'incremental_chrome_dll%': 0, | 416 'incremental_chrome_dll%': '<!(python <(DEPTH)/tools/win/supalink/check_inst
alled.py)', |
| 417 | 417 |
| 418 # This is the location of the sandbox binary. Chrome looks for this before | 418 # This is the location of the sandbox binary. Chrome looks for this before |
| 419 # running the zygote process. If found, and SUID, it will be used to | 419 # running the zygote process. If found, and SUID, it will be used to |
| 420 # sandbox the zygote process and, thus, all renderer processes. | 420 # sandbox the zygote process and, thus, all renderer processes. |
| 421 'linux_sandbox_path%': '', | 421 'linux_sandbox_path%': '', |
| 422 | 422 |
| 423 # Set this to true to enable SELinux support. | 423 # Set this to true to enable SELinux support. |
| 424 'selinux%': 0, | 424 'selinux%': 0, |
| 425 | 425 |
| 426 # Set this to true when building with Clang. | 426 # Set this to true when building with Clang. |
| (...skipping 1990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2417 # settings in target dicts. SYMROOT is a special case, because many other | 2417 # settings in target dicts. SYMROOT is a special case, because many other |
| 2418 # Xcode variables depend on it, including variables such as | 2418 # Xcode variables depend on it, including variables such as |
| 2419 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2419 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2420 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2420 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2421 # files to appear (when present) in the UI as actual files and not red | 2421 # files to appear (when present) in the UI as actual files and not red |
| 2422 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2422 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2423 # and therefore SYMROOT, needs to be set at the project level. | 2423 # and therefore SYMROOT, needs to be set at the project level. |
| 2424 'SYMROOT': '<(DEPTH)/xcodebuild', | 2424 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2425 }, | 2425 }, |
| 2426 } | 2426 } |
| OLD | NEW |