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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 11428031: Another shot at using the new asan flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | « build/common.gypi ('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) 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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 2479 matching lines...) Expand 10 before | Expand all | Expand 10 after
2490 'WARNING_CFLAGS': [ 2490 'WARNING_CFLAGS': [
2491 # swig creates code with self assignments. 2491 # swig creates code with self assignments.
2492 '-Wno-self-assign', 2492 '-Wno-self-assign',
2493 ], 2493 ],
2494 }, 2494 },
2495 'cflags': [ 2495 'cflags': [
2496 '-Wno-self-assign', 2496 '-Wno-self-assign',
2497 ], 2497 ],
2498 }], 2498 }],
2499 ['asan==1', { 2499 ['asan==1', {
2500 'cflags!': [ '-faddress-sanitizer' ], 2500 'cflags!': [ '-faddress-sanitizer', '-fsanitize=address', ],
2501 'xcode_settings': { 2501 'xcode_settings': {
2502 'OTHER_CFLAGS!': [ 2502 'OTHER_CFLAGS!': [
2503 '-faddress-sanitizer', 2503 '-faddress-sanitizer', '-fsanitize=address',
2504 ], 2504 ],
2505 }, 2505 },
2506 }], 2506 }],
2507 ], 2507 ],
2508 'actions': [ 2508 'actions': [
2509 { 2509 {
2510 'variables' : { 2510 'variables' : {
2511 'swig_args': [ '-I..', 2511 'swig_args': [ '-I..',
2512 '-python', 2512 '-python',
2513 '-c++', 2513 '-c++',
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
2802 'sync_integration_tests.isolate', 2802 'sync_integration_tests.isolate',
2803 ], 2803 ],
2804 'sources': [ 2804 'sources': [
2805 'sync_integration_tests.isolate', 2805 'sync_integration_tests.isolate',
2806 ], 2806 ],
2807 }, 2807 },
2808 ], 2808 ],
2809 }], 2809 }],
2810 ], # 'conditions' 2810 ], # 'conditions'
2811 } 2811 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698