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 when these tests are run on those bots. | |
7 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
8 'variables': { | |
9 'command': [ | |
10 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', | |
11 ], | |
12 'isolate_dependency_tracked': [ | |
13 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', | |
14 '../gpu/gles2_conform_support/gles2_conform_test_expectations.txt', | |
15 ], | |
16 }, | |
17 }], | |
18 # .isolate format doesn't support nested conditions. | |
19 ['(OS=="linux" or OS=="mac" or OS=="win") and internal_gles2_conform_tests== 1', { | |
20 'variables': { | |
21 'isolate_dependency_tracked': [ | |
22 '<(PRODUCT_DIR)/gles2_conform_test_windowless<(EXECUTABLE_SUFFIX)', | |
23 # Could add gles2_conform_test_angle or | |
24 # gles2_conform_test_chromeos if the bots were testing those. | |
25 ], | |
26 'isolate_dependency_untracked': [ | |
27 '../third_party/gles2_conform/GTF_ES/', | |
28 ], | |
29 }, | |
30 }], | |
31 # This no-op branch should not be necessary but seems to be. | |
M-A Ruel
2014/01/07 00:31:46
What happened otherwise? I consider this a bug in
Ken Russell (switch to Gerrit)
2014/01/07 00:42:54
Issue 331957 filed about the error which occurs if
| |
32 ['(OS=="linux" or OS=="mac" or OS=="win") and internal_gles2_conform_tests== 0', { | |
33 'variables': { | |
34 'isolate_dependency_tracked': [ | |
35 ], | |
36 }, | |
37 }], | |
38 ], | |
39 } | |
OLD | NEW |