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

Side by Side Diff: chrome/ct_top1k.isolate

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: Address comments 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/test/ct/run_ct_top1k.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 # TODO(rmistry): Try out the below once things are running on the
8 # FYI waterfall.
9 # '../tools/telemetry/telemetry.isolate',
10 # '../tools/perf/perf.isolate',
11 '../tools/perf/chrome_telemetry_build/telemetry_binary_manager.isolate',
12 ],
13 'conditions': [
14 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
15 'variables': {
16 'files': [
17 '../build/android/pylib/',
18 '../build/android/devil/',
19 '../testing/variations/',
20 '../third_party/catapult/',
21 '../tools/telemetry/',
22 '../tools/perf/',
23 '../tools/variations/',
24 '../testing/test_env.py',
25 '../out/Release/',
M-A Ruel 2015/11/17 18:31:49 FTR, we generally use <(PRODUCT_DIR), otherwise yo
rmistry 2015/11/17 18:33:57 Do I have to explicitly set PRODUCT_DIR with path_
M-A Ruel 2015/11/17 18:36:16 No you have to set it, so for now hardcoding this
26
27 '../content/test/ct/run_ct_top1k.py',
28 '../content/test/ct/slave<(SLAVE_NUM)/page_sets/',
29 '../content/test/ct/run_chromium_perf_swarming',
30 ],
31 'command': [
32 'python',
33 '../content/test/ct/run_ct_top1k.py',
34 '--slave_num=<(SLAVE_NUM)',
35 '--benchmark=<(BENCHMARK)',
36 '--master=<(MASTER)',
37 '--builder=<(BUILDER)',
38 '--git_hash=<(GIT_HASH)',
39 ],
40 },
41 }],
42 ]
43 }
OLDNEW
« no previous file with comments | « no previous file | content/test/ct/run_ct_top1k.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698