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

Unified Diff: ash/ash_unittests.isolate

Issue 612673002: Swarm ash_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix windows Created 6 years, 3 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: ash/ash_unittests.isolate
diff --git a/base/base_unittests.isolate b/ash/ash_unittests.isolate
similarity index 57%
copy from base/base_unittests.isolate
copy to ash/ash_unittests.isolate
index a7a0723790718be93706a6ce9f1fedba94afe898..2f3b8c620613b77d1d8ebf1b870fab65232516f6 100644
--- a/base/base_unittests.isolate
+++ b/ash/ash_unittests.isolate
@@ -1,12 +1,17 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Copyright (c) 2014 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=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
+ ['OS=="win" or chromeos==1', {
M-A Ruel 2014/09/29 15:07:32 I think what you want is OS=="linux" or OS=="win".
jam 2014/09/29 15:24:26 Can you explain why I'd say linux instead of chrom
M-A Ruel 2014/09/29 15:29:43 Then use the same check at line 18 for consistency
'variables': {
- 'isolate_dependency_untracked': [
- 'test/data/',
+ 'isolate_dependency_tracked': [
+ '../testing/test_env.py',
+ '<(PRODUCT_DIR)/ash_unittests<(EXECUTABLE_SUFFIX)',
+ '<(PRODUCT_DIR)/chrome_100_percent.pak',
+ '<(PRODUCT_DIR)/chrome_200_percent.pak',
+ '<(PRODUCT_DIR)/locales/en-US.pak',
+ '<(PRODUCT_DIR)/keyboard_resources.pak',
],
},
}],
@@ -15,12 +20,13 @@
'command': [
'../testing/xvfb.py',
'<(PRODUCT_DIR)',
- '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
- '--brave-new-test-launcher',
+ '<(PRODUCT_DIR)/ash_unittests',
'--test-launcher-bot-mode',
],
'isolate_dependency_tracked': [
'../testing/xvfb.py',
+ '<(PRODUCT_DIR)/libffmpegsumo.so',
+ '<(PRODUCT_DIR)/libosmesa.so',
],
},
}],
@@ -31,34 +37,28 @@
],
},
}],
- ['OS=="linux" or OS=="mac" or OS=="win"', {
- 'variables': {
- 'isolate_dependency_tracked': [
- '../testing/test_env.py',
- '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
- ],
- 'read_only': 1,
- },
- }],
- ['OS=="mac" or OS=="win"', {
+ ['OS=="win"', {
'variables': {
'command': [
'../testing/test_env.py',
- '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
- '--brave-new-test-launcher',
+ '<(PRODUCT_DIR)/ash_unittests.exe',
'--test-launcher-bot-mode',
],
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/ffmpegsumo.dll',
+ '<(PRODUCT_DIR)/osmesa.dll',
+ ],
},
}],
['OS=="win" and (fastbuild==0 or fastbuild==1)', {
'variables': {
'isolate_dependency_untracked': [
- '<(PRODUCT_DIR)/base_unittests.exe.pdb',
+ '<(PRODUCT_DIR)/ash_unittests.exe.pdb',
],
},
}],
],
'includes': [
- 'base.isolate',
+ '../base/base.isolate',
],
}

Powered by Google App Engine
This is Rietveld 408576698