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

Side by Side Diff: build/common.gypi

Issue 17348007: Disable large address aware mode for SyzyASAN builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | 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 4412 matching lines...) Expand 10 before | Expand all | Expand 10 after
4423 'configurations': { 4423 'configurations': {
4424 'x86_Base': { 4424 'x86_Base': {
4425 'msvs_settings': { 4425 'msvs_settings': {
4426 'VCLinkerTool': { 4426 'VCLinkerTool': {
4427 'AdditionalOptions': [ 4427 'AdditionalOptions': [
4428 '/safeseh', 4428 '/safeseh',
4429 '/dynamicbase', 4429 '/dynamicbase',
4430 '/ignore:4199', 4430 '/ignore:4199',
4431 '/ignore:4221', 4431 '/ignore:4221',
4432 '/nxcompat', 4432 '/nxcompat',
4433 '/largeaddressaware', 4433 ],
4434 'conditions': [
4435 ['asan==0', {
4436 'AdditionalOptions': ['/largeaddressaware'],
4437 }],
4434 ], 4438 ],
4435 }, 4439 },
4436 }, 4440 },
4437 }, 4441 },
4438 'x64_Base': { 4442 'x64_Base': {
4439 'msvs_settings': { 4443 'msvs_settings': {
4440 'VCLinkerTool': { 4444 'VCLinkerTool': {
4441 'AdditionalOptions': [ 4445 'AdditionalOptions': [
4442 # safeseh is not compatible with x64 4446 # safeseh is not compatible with x64
4443 '/dynamicbase', 4447 '/dynamicbase',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
4572 # settings in target dicts. SYMROOT is a special case, because many other 4576 # settings in target dicts. SYMROOT is a special case, because many other
4573 # Xcode variables depend on it, including variables such as 4577 # Xcode variables depend on it, including variables such as
4574 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4578 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4575 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4579 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4576 # files to appear (when present) in the UI as actual files and not red 4580 # files to appear (when present) in the UI as actual files and not red
4577 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4581 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4578 # and therefore SYMROOT, needs to be set at the project level. 4582 # and therefore SYMROOT, needs to be set at the project level.
4579 'SYMROOT': '<(DEPTH)/xcodebuild', 4583 'SYMROOT': '<(DEPTH)/xcodebuild',
4580 }, 4584 },
4581 } 4585 }
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