Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 7563021: Added WebGL conformance test expectation script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated regex. Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/test/gpu/generate_webgl_conformance_test_list.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/gpu/generate_webgl_conformance_test_list.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698