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

Side by Side Diff: build/common.gypi

Issue 8059024: Mostly automatic incremental link enabling (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: make sure tmp file is unlink'd Created 9 years, 2 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 | tools/win/supalink/README » ('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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)',
Nico 2012/03/29 22:47:32 rlz has a mode where it can be built stand-alone.
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
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 }
OLDNEW
« no previous file with comments | « no previous file | tools/win/supalink/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698