OLD | NEW |
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 'variables' : { | 6 'variables' : { |
7 'pyautolib_sources': [ | 7 'pyautolib_sources': [ |
8 'app/chrome_command_ids.h', | 8 'app/chrome_command_ids.h', |
9 'app/chrome_dll_resource.h', | 9 'app/chrome_dll_resource.h', |
10 'common/automation_constants.h', | 10 'common/automation_constants.h', |
(...skipping 3907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3918 ], | 3918 ], |
3919 'outputs': [ | 3919 'outputs': [ |
3920 '<(INTERMEDIATE_DIR)/pyautolib_wrap.cc', | 3920 '<(INTERMEDIATE_DIR)/pyautolib_wrap.cc', |
3921 '<(PRODUCT_DIR)/pyautolib.py', | 3921 '<(PRODUCT_DIR)/pyautolib.py', |
3922 ], | 3922 ], |
3923 'action': [ 'python', | 3923 'action': [ 'python', |
3924 '../tools/swig/swig.py', | 3924 '../tools/swig/swig.py', |
3925 '-I..', | 3925 '-I..', |
3926 '-python', | 3926 '-python', |
3927 '-c++', | 3927 '-c++', |
| 3928 '-threads', |
3928 '-outdir', | 3929 '-outdir', |
3929 '<(PRODUCT_DIR)', | 3930 '<(PRODUCT_DIR)', |
3930 '-o', | 3931 '-o', |
3931 '<(INTERMEDIATE_DIR)/pyautolib_wrap.cc', | 3932 '<(INTERMEDIATE_DIR)/pyautolib_wrap.cc', |
3932 'test/pyautolib/pyautolib.i', | 3933 'test/pyautolib/pyautolib.i', |
3933 ], | 3934 ], |
3934 'message': 'Generating swig wrappers for pyautolib.', | 3935 'message': 'Generating swig wrappers for pyautolib.', |
3935 }, | 3936 }, |
3936 ], # actions | 3937 ], # actions |
3937 }, # target 'pyautolib' | 3938 }, # target 'pyautolib' |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4108 # Use outputs of this action as inputs for the main target build. | 4109 # Use outputs of this action as inputs for the main target build. |
4109 # Seems as a misnomer but makes this happy on Linux (scons). | 4110 # Seems as a misnomer but makes this happy on Linux (scons). |
4110 'process_outputs_as_sources': 1, | 4111 'process_outputs_as_sources': 1, |
4111 }, | 4112 }, |
4112 ], # 'actions' | 4113 ], # 'actions' |
4113 }, | 4114 }, |
4114 ] | 4115 ] |
4115 }], # 'coverage!=0' | 4116 }], # 'coverage!=0' |
4116 ], # 'conditions' | 4117 ], # 'conditions' |
4117 } | 4118 } |
OLD | NEW |