OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 'includes': [ | 5 'includes': [ |
6 'angle.isolate', | 6 'angle.isolate', |
7 ], | 7 ], |
8 'conditions': [ | 8 'conditions': [ |
9 # TODO(kbr): add Android when these tests are run on those bots. | 9 # TODO(kbr): add Android when these tests are run on those bots. |
10 ['OS=="linux" or OS=="mac" or OS=="win"', { | 10 ['OS=="linux" or OS=="mac" or OS=="win"', { |
11 'variables': { | 11 'variables': { |
12 'command': [ | 12 'command': [ |
13 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', | 13 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', |
14 ], | 14 ], |
15 'isolate_dependency_tracked': [ | 15 'files': [ |
16 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', | 16 '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)', |
17 '../gpu/gles2_conform_support/gles2_conform_test_expectations.txt', | 17 '../gpu/gles2_conform_support/gles2_conform_test_expectations.txt', |
18 ], | 18 ], |
19 }, | 19 }, |
20 }], | 20 }], |
21 # .isolate format doesn't support nested conditions. | 21 # .isolate format doesn't support nested conditions. |
22 ['(OS=="linux" or OS=="mac" or OS=="win") and internal_gles2_conform_tests==
1', { | 22 ['(OS=="linux" or OS=="mac" or OS=="win") and internal_gles2_conform_tests==
1', { |
23 'variables': { | 23 'variables': { |
24 'isolate_dependency_tracked': [ | 24 'files': [ |
| 25 '../third_party/gles2_conform/GTF_ES/', |
25 '<(PRODUCT_DIR)/gles2_conform_test_windowless<(EXECUTABLE_SUFFIX)', | 26 '<(PRODUCT_DIR)/gles2_conform_test_windowless<(EXECUTABLE_SUFFIX)', |
26 # Could add gles2_conform_test_angle or | 27 # Could add gles2_conform_test_angle or |
27 # gles2_conform_test_chromeos if the bots were testing those. | 28 # gles2_conform_test_chromeos if the bots were testing those. |
28 ], | 29 ], |
29 'isolate_dependency_untracked': [ | |
30 '../third_party/gles2_conform/GTF_ES/', | |
31 ], | |
32 }, | 30 }, |
33 }], | 31 }], |
34 ], | 32 ], |
35 } | 33 } |
OLD | NEW |