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

Side by Side Diff: build/common.gypi

Issue 12210114: Do not strip ASan builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 ['enable_web_intents_tag==1', { 1435 ['enable_web_intents_tag==1', {
1436 'grit_defines': ['-D', 'enable_web_intents_tag'], 1436 'grit_defines': ['-D', 'enable_web_intents_tag'],
1437 }], 1437 }],
1438 1438
1439 ['asan==1 and OS!="win"', { 1439 ['asan==1 and OS!="win"', {
1440 'clang%': 1, 1440 'clang%': 1,
1441 }], 1441 }],
1442 ['asan==1 and OS=="mac"', { 1442 ['asan==1 and OS=="mac"', {
1443 # See http://crbug.com/145503. 1443 # See http://crbug.com/145503.
1444 'component': "static_library", 1444 'component': "static_library",
1445 # TODO(glider): we do not strip ASan binaries until the dynamic ASan
1446 # runtime is fully adopted. See http://crbug.com/170629.
1447 'mac_strip_release': 0,
1445 }], 1448 }],
1446 ['tsan==1', { 1449 ['tsan==1', {
1447 'clang%': 1, 1450 'clang%': 1,
1448 }], 1451 }],
1449 1452
1450 ['OS=="linux" and clang_type_profiler==1', { 1453 ['OS=="linux" and clang_type_profiler==1', {
1451 'clang%': 1, 1454 'clang%': 1,
1452 'clang_use_chrome_plugins%': 0, 1455 'clang_use_chrome_plugins%': 0,
1453 'conditions': [ 1456 'conditions': [
1454 ['host_arch=="x64"', { 1457 ['host_arch=="x64"', {
(...skipping 2571 matching lines...) Expand 10 before | Expand all | Expand 10 after
4026 # settings in target dicts. SYMROOT is a special case, because many other 4029 # settings in target dicts. SYMROOT is a special case, because many other
4027 # Xcode variables depend on it, including variables such as 4030 # Xcode variables depend on it, including variables such as
4028 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4031 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4029 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4032 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4030 # files to appear (when present) in the UI as actual files and not red 4033 # files to appear (when present) in the UI as actual files and not red
4031 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4034 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4032 # and therefore SYMROOT, needs to be set at the project level. 4035 # and therefore SYMROOT, needs to be set at the project level.
4033 'SYMROOT': '<(DEPTH)/xcodebuild', 4036 'SYMROOT': '<(DEPTH)/xcodebuild',
4034 }, 4037 },
4035 } 4038 }
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