| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 GPU_ISOLATES = ( | 5 GPU_ISOLATES = ( |
| 6 'angle_unittests', | 6 'angle_unittests', |
| 7 'content_gl_tests', | 7 'content_gl_tests', |
| 8 'gl_tests', | 8 'gl_tests', |
| 9 'gles2_conform_test', | 9 'gles2_conform_test', |
| 10 'gpu_unittests', | 10 'gpu_unittests', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 'content_unittests', | 21 'content_unittests', |
| 22 ) | 22 ) |
| 23 | 23 |
| 24 # This will be folded into the list above once ANGLE is running on all | 24 # This will be folded into the list above once ANGLE is running on all |
| 25 # platforms. | 25 # platforms. |
| 26 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES = ( | 26 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES = ( |
| 27 'angle_end2end_tests', | 27 'angle_end2end_tests', |
| 28 ) | 28 ) |
| 29 | 29 |
| 30 WIN_ONLY_FYI_ONLY_GPU_ISOLATES = ( | 30 WIN_ONLY_FYI_ONLY_GPU_ISOLATES = ( |
| 31 'angle_deqp_tests', | 31 # TODO(jmadill): re-enable this once the GLES3 tests are ready |
| 32 # 'angle_deqp_tests', |
| 32 ) | 33 ) |
| 33 | 34 |
| 34 # A list of all Windows FYI isolates for testing | 35 # A list of all Windows FYI isolates for testing |
| 35 ALL_WIN_FYI_GPU_ISOLATES = ( | 36 ALL_WIN_FYI_GPU_ISOLATES = ( |
| 36 GPU_ISOLATES + | 37 GPU_ISOLATES + |
| 37 FYI_ONLY_GPU_ISOLATES + | 38 FYI_ONLY_GPU_ISOLATES + |
| 38 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES + | 39 WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES + |
| 39 WIN_ONLY_FYI_ONLY_GPU_ISOLATES | 40 WIN_ONLY_FYI_ONLY_GPU_ISOLATES |
| 40 ) | 41 ) |
| OLD | NEW |