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 3528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3539 ], | 3539 ], |
3540 # hard_dependency is necessary for this target because it has actions | 3540 # hard_dependency is necessary for this target because it has actions |
3541 # that generate a header file included by dependent targets. The header | 3541 # that generate a header file included by dependent targets. The header |
3542 # file must be generated before the dependents are compiled. The usual | 3542 # file must be generated before the dependents are compiled. The usual |
3543 # semantics are to allow the two targets to build concurrently. | 3543 # semantics are to allow the two targets to build concurrently. |
3544 'hard_dependency': 1, | 3544 'hard_dependency': 1, |
3545 'actions': [ | 3545 'actions': [ |
3546 { | 3546 { |
3547 'action_name': 'generate_webgl_conformance_test_list', | 3547 'action_name': 'generate_webgl_conformance_test_list', |
3548 'inputs': [ | 3548 'inputs': [ |
| 3549 'test/gpu/webgl_conformance_test_expectations.txt', |
3549 'test/gpu/generate_webgl_conformance_test_list.py', | 3550 'test/gpu/generate_webgl_conformance_test_list.py', |
3550 '<!@(python test/gpu/generate_webgl_conformance_test_list.py --input
)', | 3551 '<!@(python test/gpu/generate_webgl_conformance_test_list.py --input
)', |
3551 ], | 3552 ], |
3552 'outputs': [ | 3553 'outputs': [ |
3553 '<(test_list_out_dir)/webgl_conformance_test_list_autogen.h', | 3554 '<(test_list_out_dir)/webgl_conformance_test_list_autogen.h', |
3554 ], | 3555 ], |
3555 'action': [ | 3556 'action': [ |
3556 'python', | 3557 'python', |
3557 'test/gpu/generate_webgl_conformance_test_list.py', | 3558 'test/gpu/generate_webgl_conformance_test_list.py', |
3558 '<(test_list_out_dir)/webgl_conformance_test_list_autogen.h', | 3559 '<(test_list_out_dir)/webgl_conformance_test_list_autogen.h', |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4136 # Use outputs of this action as inputs for the main target build. | 4137 # Use outputs of this action as inputs for the main target build. |
4137 # Seems as a misnomer but makes this happy on Linux (scons). | 4138 # Seems as a misnomer but makes this happy on Linux (scons). |
4138 'process_outputs_as_sources': 1, | 4139 'process_outputs_as_sources': 1, |
4139 }, | 4140 }, |
4140 ], # 'actions' | 4141 ], # 'actions' |
4141 }, | 4142 }, |
4142 ] | 4143 ] |
4143 }], # 'coverage!=0' | 4144 }], # 'coverage!=0' |
4144 ], # 'conditions' | 4145 ], # 'conditions' |
4145 } | 4146 } |
OLD | NEW |