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

Unified Diff: chrome/ct_top1k.isolate.tmpl

Issue 1410353007: Add CT isolate file and CT script that will be run on swarming slaves (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Setup executable bit for presubmit Created 5 years, 1 month 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
« no previous file with comments | « no previous file | content/test/ct/path_util.py » ('j') | content/test/ct/run_ct_top1k.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ct_top1k.isolate.tmpl
diff --git a/chrome/ct_top1k.isolate.tmpl b/chrome/ct_top1k.isolate.tmpl
new file mode 100644
index 0000000000000000000000000000000000000000..9cdb0a2879d07b80dfebc1c0f431e9398110f628
--- /dev/null
+++ b/chrome/ct_top1k.isolate.tmpl
@@ -0,0 +1,44 @@
+# Copyright (c) 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.
+
+{
+ 'includes': [
+ # TODO(rmistry): Try out the below once things are running on the
+ # FYI waterfall.
+ # '../tools/telemetry/telemetry.isolate',
+ # '../tools/perf/perf.isolate',
+ '../tools/perf/chrome_telemetry_build/telemetry_binary_manager.isolate',
+ ],
+ 'conditions': [
+ ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
+ 'variables': {
+ 'files': [
+ '../build/android/pylib/',
+ '../build/android/devil/',
+ '../testing/variations/',
+ '../third_party/catapult/',
+ '../tools/telemetry/',
+ '../tools/perf/',
+ '../tools/variations/',
+ '../testing/test_env.py',
+ '../out/Release/',
+
+ '../content/test/ct/run_ct_top1k.py',
+ '../content/test/ct/path_util.py',
+ '../content/test/ct/slave[[SLAVE_NUM]]/page_sets/',
+ '../content/test/ct/run_chromium_perf_swarming',
+ ],
+ 'command': [
+ 'python',
+ '../content/test/ct/run_ct_top1k.py',
+ '--slave_num=[[SLAVE_NUM]]',
M-A Ruel 2015/11/16 20:22:02 You should use native isolate variable support. T
rmistry 2015/11/17 13:00:56 That sounds good. I modified things and tried to p
rmistry 2015/11/17 15:57:46 Ah, it works with --extra-variable. Done.
+ '--benchmark=[[BENCHMARK]]',
+ '--master=[[MASTER]]',
+ '--builder=[[BUILDER]]',
+ '--git_hash=[[GIT_HASH]]',
+ ],
+ },
+ }],
+ ]
+}
« no previous file with comments | « no previous file | content/test/ct/path_util.py » ('j') | content/test/ct/run_ct_top1k.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698