OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 { | |
5 'conditions': [ | |
6 # TODO(kbr): add Android and Chrome OS too when these tests are run on | |
7 # those bots. | |
8 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
9 'variables': { | |
10 'isolate_dependency_tracked': [ | |
M-A Ruel
2014/01/06 19:45:02
same
Ken Russell (switch to Gerrit)
2014/01/06 23:35:12
Done.
| |
11 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', | |
12 '../gpu/gles2_conform_support/gles2_conform_test_expectations.txt', | |
13 ], | |
14 'command': [ | |
15 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', | |
16 ], | |
17 }, | |
18 }], | |
19 # .isolate format doesn't support nested conditions. | |
20 ['(OS=="linux" or OS=="mac" or OS=="win") and internal_gles2_conform_tests== 1', { | |
M-A Ruel
2014/01/06 19:45:02
Oh, isolate's parser is likely too dumb to underst
Ken Russell (switch to Gerrit)
2014/01/06 23:35:12
This change fixed the try job failure, so it seems
| |
21 'variables': { | |
22 'isolate_dependency_tracked': [ | |
23 '<(PRODUCT_DIR)/gles2_conform_test_windowless<(EXECUTABLE_SUFFIX)', | |
24 # Could add gles2_conform_test_angle or | |
25 # gles2_conform_test_chromeos if the bots were testing those. | |
26 ], | |
27 'isolate_dependency_untracked': [ | |
28 '../third_party/gles2_conform/GTF_ES/', | |
29 ], | |
30 }, | |
31 }], | |
32 # This no-op branch should not be necessary but seems to be. | |
33 ['(OS=="linux" or OS=="mac" or OS=="win") and internal_gles2_conform_tests== 0', { | |
34 'variables': { | |
35 'isolate_dependency_tracked': [ | |
36 ], | |
37 }, | |
38 }], | |
39 ], | |
40 } | |
OLD | NEW |