OLD | NEW |
---|---|
(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): Uncomment below when the solution to discussion in | |
8 # crrev.com/1423993007/diff/440001/scripts/slave/recipes/perf/ct_top1k_rr_pe rf.py#newcode143 is found. | |
9 # '../tools/telemetry/telemetry.isolate', | |
10 '../tools/perf/chrome_telemetry_build/telemetry_binary_manager.isolate', | |
nednguyen
2015/11/13 18:24:39
Telemetry & perf dependencies can be found fully d
rmistry
2015/11/16 16:31:49
I get this error when I use perf.isolate when runn
| |
11 ], | |
12 'conditions': [ | |
13 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | |
14 'variables': { | |
15 'files': [ | |
16 '../build/android/pylib/', | |
17 '../build/android/devil/', | |
18 '../third_party/catapult/', | |
19 '../tools/telemetry/', | |
20 '../tools/perf/', | |
21 '../tools/variations/', | |
22 '../testing/test_env.py', | |
23 '../out/Release/', | |
24 | |
25 '../content/test/ct/run_ct_top1k.py', | |
26 '../content/test/ct/path_util.py', | |
27 '../content/test/ct/slave[[SLAVE_NUM]]/page_sets/', | |
28 '../content/test/ct/run_chromium_perf_swarming', | |
29 ], | |
30 'command': [ | |
31 'python', | |
32 '../content/test/ct/run_ct_top1k.py', | |
33 '--slave_num=[[SLAVE_NUM]]', | |
34 '--benchmark=[[BENCHMARK]]', | |
35 '--master=[[MASTER]]', | |
36 '--builder=[[BUILDER]]', | |
37 '--git_hash=[[GIT_HASH]]', | |
38 ], | |
39 }, | |
40 }], | |
41 ] | |
42 } | |
OLD | NEW |