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

Side by Side Diff: build/common.gypi

Issue 1816683002: clang/win: Enable fastbuild=1 by default for now. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: oops Created 4 years, 9 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
« no previous file with comments | « no previous file | build/config/compiler/compiler.gni » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 2423 matching lines...) Expand 10 before | Expand all | Expand 10 after
2434 # goma doesn't support pch yet. 2434 # goma doesn't support pch yet.
2435 'chromium_win_pch': 0, 2435 'chromium_win_pch': 0,
2436 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. 2436 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
2437 'conditions': [ 2437 'conditions': [
2438 ['win_z7==0 and fastbuild==0', { 2438 ['win_z7==0 and fastbuild==0', {
2439 'fastbuild': 1, 2439 'fastbuild': 1,
2440 }], 2440 }],
2441 ], 2441 ],
2442 }], 2442 }],
2443 2443
2444 ['OS=="win" and clang==1', {
2445 # TODO(thakis): Remove this again once building with clang/win and
2446 # debug info doesn't make link.exe run for hours.
2447 'fastbuild': 1,
2448 }],
2449
2450
2444 ['host_clang==1', { 2451 ['host_clang==1', {
2445 'host_cc': '<(make_clang_dir)/bin/clang', 2452 'host_cc': '<(make_clang_dir)/bin/clang',
2446 'host_cxx': '<(make_clang_dir)/bin/clang++', 2453 'host_cxx': '<(make_clang_dir)/bin/clang++',
2447 }, { 2454 }, {
2448 'host_cc': '<!(which gcc)', 2455 'host_cc': '<!(which gcc)',
2449 'host_cxx': '<!(which g++)', 2456 'host_cxx': '<!(which g++)',
2450 }], 2457 }],
2451 2458
2452 # The seccomp-bpf sandbox is only supported on five architectures 2459 # The seccomp-bpf sandbox is only supported on five architectures
2453 # currently. 2460 # currently.
(...skipping 3922 matching lines...) Expand 10 before | Expand all | Expand 10 after
6376 # settings in target dicts. SYMROOT is a special case, because many other 6383 # settings in target dicts. SYMROOT is a special case, because many other
6377 # Xcode variables depend on it, including variables such as 6384 # Xcode variables depend on it, including variables such as
6378 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6385 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6379 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6386 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6380 # files to appear (when present) in the UI as actual files and not red 6387 # files to appear (when present) in the UI as actual files and not red
6381 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6388 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6382 # and therefore SYMROOT, needs to be set at the project level. 6389 # and therefore SYMROOT, needs to be set at the project level.
6383 'SYMROOT': '<(DEPTH)/xcodebuild', 6390 'SYMROOT': '<(DEPTH)/xcodebuild',
6384 }, 6391 },
6385 } 6392 }
OLDNEW
« no previous file with comments | « no previous file | build/config/compiler/compiler.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698