Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(539)

Side by Side Diff: build/common.gypi

Issue 7670031: restore OutputFile for chrome.exe, do moving hardlink on dll instead (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: use initial instead of incremental to coexist with syzygy flag Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698