Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2309)

Unified Diff: chrome/gles2_conform_test.isolate

Issue 101783011: Added isolates for remaining tests on GPU bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Retry failed upload. Created 6 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/gles2_conform_test.isolate
diff --git a/chrome/gles2_conform_test.isolate b/chrome/gles2_conform_test.isolate
new file mode 100644
index 0000000000000000000000000000000000000000..e42f93aa6439c393fa4cf9ef39f6c8c12d4cc415
--- /dev/null
+++ b/chrome/gles2_conform_test.isolate
@@ -0,0 +1,40 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'conditions': [
+ # TODO(kbr): add Android and Chrome OS too when these tests are run on
+ # those bots.
+ ['OS=="linux" or OS=="mac" or OS=="win"', {
+ 'variables': {
+ '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.
+ '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)',
+ '../gpu/gles2_conform_support/gles2_conform_test_expectations.txt',
+ ],
+ 'command': [
+ '<(PRODUCT_DIR)/gles2_conform_test<(EXECUTABLE_SUFFIX)',
+ ],
+ },
+ }],
+ # .isolate format doesn't support nested conditions.
+ ['(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
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/gles2_conform_test_windowless<(EXECUTABLE_SUFFIX)',
+ # Could add gles2_conform_test_angle or
+ # gles2_conform_test_chromeos if the bots were testing those.
+ ],
+ 'isolate_dependency_untracked': [
+ '../third_party/gles2_conform/GTF_ES/',
+ ],
+ },
+ }],
+ # This no-op branch should not be necessary but seems to be.
+ ['(OS=="linux" or OS=="mac" or OS=="win") and internal_gles2_conform_tests==0', {
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ ],
+ },
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698