summaryrefslogtreecommitdiffstats
path: root/gpu/gpu_unittests.isolate
diff options
context:
space:
mode:
authorjam <jam@chromium.org>2015-01-20 08:36:55 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-20 16:37:53 +0000
commit91ddf63bc2fc4287366260893c41d1150686a9dd (patch)
tree87209ffb3ca00c4c4b1d3fffae94be35534df6a3 /gpu/gpu_unittests.isolate
parent8e45cd72ae2bf0a6f01aa6c492f336a92e3b95d4 (diff)
downloadchromium_src-91ddf63bc2fc4287366260893c41d1150686a9dd.zip
chromium_src-91ddf63bc2fc4287366260893c41d1150686a9dd.tar.gz
chromium_src-91ddf63bc2fc4287366260893c41d1150686a9dd.tar.bz2
Swarm gpu_unittests.
BUG=448877 Committed: https://crrev.com/ceca415be1b0af7f18dd22e8058c8b88401c46ef Cr-Commit-Position: refs/heads/master@{#311755} Review URL: https://codereview.chromium.org/848173004 Cr-Commit-Position: refs/heads/master@{#312211}
Diffstat (limited to 'gpu/gpu_unittests.isolate')
-rw-r--r--gpu/gpu_unittests.isolate66
1 files changed, 66 insertions, 0 deletions
diff --git a/gpu/gpu_unittests.isolate b/gpu/gpu_unittests.isolate
new file mode 100644
index 0000000..3380606
--- /dev/null
+++ b/gpu/gpu_unittests.isolate
@@ -0,0 +1,66 @@
+# Copyright 2015 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': [
+ ['OS=="linux" or OS=="mac" or OS=="win"', {
+ 'variables': {
+ 'files': [
+ '../testing/test_env.py',
+ '<(PRODUCT_DIR)/gpu_unittests<(EXECUTABLE_SUFFIX)',
+ ],
+ },
+ }],
+ ['OS=="linux"', {
+ 'variables': {
+ 'command': [
+ '../testing/xvfb.py',
+ '<(PRODUCT_DIR)',
+ '<(PRODUCT_DIR)/gpu_unittests',
+ '--brave-new-test-launcher',
+ '--test-launcher-bot-mode',
+ '--asan=<(asan)',
+ '--lsan=<(lsan)',
+ ],
+ 'files': [
+ '../testing/xvfb.py',
+ '<(PRODUCT_DIR)/xdisplaycheck',
+ ],
+ },
+ }],
+ ['OS=="mac"', {
+ 'variables': {
+ 'command': [
+ '../testing/test_env.py',
+ '<(PRODUCT_DIR)/gpu_unittests',
+ '--brave-new-test-launcher',
+ '--test-launcher-bot-mode',
+ '--asan=<(asan)',
+ '--lsan=<(lsan)',
+ ],
+ },
+ }],
+ ['OS=="win"', {
+ 'variables': {
+ 'command': [
+ '../testing/test_env.py',
+ '<(PRODUCT_DIR)/gpu_unittests.exe',
+ '--brave-new-test-launcher',
+ '--test-launcher-bot-mode',
+ '--asan=<(asan)',
+ '--lsan=<(lsan)',
+ ],
+ },
+ }],
+ ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
+ 'variables': {
+ 'files': [
+ '<(PRODUCT_DIR)/gpu_unittests.exe.pdb',
+ ],
+ },
+ }],
+ ],
+ 'includes': [
+ '../base/base.isolate',
+ ],
+}