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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 10037007: Fixing: fake asan run time for pyauto must be built without asan itself (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 '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 4430 matching lines...) Expand 10 before | Expand all | Expand 10 after
4441 'xcode_settings': { 4441 'xcode_settings': {
4442 'WARNING_CFLAGS': [ 4442 'WARNING_CFLAGS': [
4443 # swig creates code with self assignments. 4443 # swig creates code with self assignments.
4444 '-Wno-self-assign', 4444 '-Wno-self-assign',
4445 ], 4445 ],
4446 }, 4446 },
4447 'cflags': [ 4447 'cflags': [
4448 '-Wno-self-assign', 4448 '-Wno-self-assign',
4449 ], 4449 ],
4450 }], 4450 }],
4451 ['asan==1', {
4452 'cflags!': [ '-faddress-sanitizer' ],
Nico 2012/04/10 17:49:54 This doesn't remove the flag for mac (which uses s
4453 }],
4451 ], 4454 ],
4452 'actions': [ 4455 'actions': [
4453 { 4456 {
4454 'action_name': 'pyautolib_swig', 4457 'action_name': 'pyautolib_swig',
4455 'inputs': [ 4458 'inputs': [
4456 'test/pyautolib/argc_argv.i', 4459 'test/pyautolib/argc_argv.i',
4457 'test/pyautolib/pyautolib.i', 4460 'test/pyautolib/pyautolib.i',
4458 '<@(pyautolib_sources)', 4461 '<@(pyautolib_sources)',
4459 ], 4462 ],
4460 'outputs': [ 4463 'outputs': [
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
4650 # Use outputs of this action as inputs for the main target build. 4653 # Use outputs of this action as inputs for the main target build.
4651 # Seems as a misnomer but makes this happy on Linux (scons). 4654 # Seems as a misnomer but makes this happy on Linux (scons).
4652 'process_outputs_as_sources': 1, 4655 'process_outputs_as_sources': 1,
4653 }, 4656 },
4654 ], # 'actions' 4657 ], # 'actions'
4655 }, 4658 },
4656 ] 4659 ]
4657 }], # 'coverage!=0' 4660 }], # 'coverage!=0'
4658 ], # 'conditions' 4661 ], # 'conditions'
4659 } 4662 }
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