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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 7828043: If the 'asan' GYP variable is set to 1 on Mac, do not strip the __asan_init symbol from the binar... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | « chrome/chrome.gyp ('k') | 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) 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'chrome_exe_target': 0, 8 'chrome_exe_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ], 72 ],
73 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], 73 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'],
74 'message': 'Copy first run complete sentinel file', 74 'message': 'Copy first run complete sentinel file',
75 }, 75 },
76 ], 76 ],
77 }, { # 'OS!="win" 77 }, { # 'OS!="win"
78 'sources!': [ 78 'sources!': [
79 'app/client_util.cc', 79 'app/client_util.cc',
80 ] 80 ]
81 }], 81 }],
82 ['OS=="mac" and asan==1', {
83 'xcode_settings': {
84 # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE.
85 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves',
86 },
87 }],
82 ], 88 ],
83 }], 89 }],
84 ], 90 ],
85 }, 91 },
86 'targets': [ 92 'targets': [
87 { 93 {
88 'target_name': 'chrome', 94 'target_name': 'chrome',
89 'type': 'executable', 95 'type': 'executable',
90 'mac_bundle': 1, 96 'mac_bundle': 1,
91 'variables': { 97 'variables': {
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 'configurations': { 544 'configurations': {
539 'Common_Base': { 545 'Common_Base': {
540 'msvs_target_platform': 'x64', 546 'msvs_target_platform': 'x64',
541 }, 547 },
542 }, 548 },
543 }, 549 },
544 ], 550 ],
545 }], 551 }],
546 ], 552 ],
547 } 553 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698