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 4496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4507 # swig creates code with self assignments. | 4507 # swig creates code with self assignments. |
| 4508 '-Wno-self-assign', | 4508 '-Wno-self-assign', |
| 4509 ], | 4509 ], |
| 4510 }, | 4510 }, |
| 4511 'cflags': [ | 4511 'cflags': [ |
| 4512 '-Wno-self-assign', | 4512 '-Wno-self-assign', |
| 4513 ], | 4513 ], |
| 4514 }], | 4514 }], |
| 4515 ['asan==1', { | 4515 ['asan==1', { |
| 4516 'cflags!': [ '-faddress-sanitizer' ], | 4516 'cflags!': [ '-faddress-sanitizer' ], |
| 4517 'xcode_settings': { | |
| 4518 'OTHER_CFLAGS!': [ | |
| 4519 '-faddress-sanitizer', | |
| 4520 ], | |
| 4521 }, | |
|
Nico
2012/04/23 15:17:28
Huh, I asked if we need this on mac here: http://c
| |
| 4517 }], | 4522 }], |
| 4518 ], | 4523 ], |
| 4519 'actions': [ | 4524 'actions': [ |
| 4520 { | 4525 { |
| 4521 'action_name': 'pyautolib_swig', | 4526 'action_name': 'pyautolib_swig', |
| 4522 'inputs': [ | 4527 'inputs': [ |
| 4523 'test/pyautolib/argc_argv.i', | 4528 'test/pyautolib/argc_argv.i', |
| 4524 'test/pyautolib/pyautolib.i', | 4529 'test/pyautolib/pyautolib.i', |
| 4525 '<@(pyautolib_sources)', | 4530 '<@(pyautolib_sources)', |
| 4526 ], | 4531 ], |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4717 # Use outputs of this action as inputs for the main target build. | 4722 # Use outputs of this action as inputs for the main target build. |
| 4718 # Seems as a misnomer but makes this happy on Linux (scons). | 4723 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4719 'process_outputs_as_sources': 1, | 4724 'process_outputs_as_sources': 1, |
| 4720 }, | 4725 }, |
| 4721 ], # 'actions' | 4726 ], # 'actions' |
| 4722 }, | 4727 }, |
| 4723 ] | 4728 ] |
| 4724 }], # 'coverage!=0' | 4729 }], # 'coverage!=0' |
| 4725 ], # 'conditions' | 4730 ], # 'conditions' |
| 4726 } | 4731 } |
| OLD | NEW |