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