Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |