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

Side by Side Diff: build/common.gypi

Issue 1142733003: win: Disable oilpan plugin when doing asan builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | no next file » | 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 2342 matching lines...) Expand 10 before | Expand all | Expand 10 after
2353 # goma doesn't support pch yet. 2353 # goma doesn't support pch yet.
2354 'chromium_win_pch': 0, 2354 'chromium_win_pch': 0,
2355 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. 2355 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1.
2356 'conditions': [ 2356 'conditions': [
2357 ['win_z7==0 and fastbuild==0', { 2357 ['win_z7==0 and fastbuild==0', {
2358 'fastbuild': 1, 2358 'fastbuild': 1,
2359 }], 2359 }],
2360 ], 2360 ],
2361 }], 2361 }],
2362 2362
2363 ['OS=="win" and asan==1', {
2364 # TODO(thakis): Enable this once the lkgr asan bot has caught up
2365 # with trunk clang, http://crbug.com/489123 , http://crbug.com/489123
2366 'blink_gc_plugin%': 0,
2367 }],
2368
2363 ['OS=="win" and (clang==1 or asan==1)', { 2369 ['OS=="win" and (clang==1 or asan==1)', {
2364 'chromium_win_pch': 0, 2370 'chromium_win_pch': 0,
2365 }], 2371 }],
2366 2372
2367 ['host_clang==1', { 2373 ['host_clang==1', {
2368 'host_cc': '<(make_clang_dir)/bin/clang', 2374 'host_cc': '<(make_clang_dir)/bin/clang',
2369 'host_cxx': '<(make_clang_dir)/bin/clang++', 2375 'host_cxx': '<(make_clang_dir)/bin/clang++',
2370 }, { 2376 }, {
2371 'host_cc': '<!(which gcc)', 2377 'host_cc': '<!(which gcc)',
2372 'host_cxx': '<!(which g++)', 2378 'host_cxx': '<!(which g++)',
(...skipping 3813 matching lines...) Expand 10 before | Expand all | Expand 10 after
6186 # settings in target dicts. SYMROOT is a special case, because many other 6192 # settings in target dicts. SYMROOT is a special case, because many other
6187 # Xcode variables depend on it, including variables such as 6193 # Xcode variables depend on it, including variables such as
6188 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6194 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6189 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6195 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6190 # files to appear (when present) in the UI as actual files and not red 6196 # files to appear (when present) in the UI as actual files and not red
6191 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6197 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6192 # and therefore SYMROOT, needs to be set at the project level. 6198 # and therefore SYMROOT, needs to be set at the project level.
6193 'SYMROOT': '<(DEPTH)/xcodebuild', 6199 'SYMROOT': '<(DEPTH)/xcodebuild',
6194 }, 6200 },
6195 } 6201 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698