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': [ | |
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 'conditions': [ | |
Vadim Sh.
2014/01/03 01:17:44
I think isolate.py is not happy with this structur
Ken Russell (switch to Gerrit)
2014/01/03 02:15:48
You're absolutely right. I forgot to re-test local
| |
19 ['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 ], | |
32 }], | |
33 ], | |
34 } | |
OLD | NEW |