Chromium Code Reviews| 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): 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/', | |
| 26 | |
| 27 '../content/test/ct/run_ct_top1k.py', | |
| 28 '../content/test/ct/path_util.py', | |
| 29 '../content/test/ct/slave[[SLAVE_NUM]]/page_sets/', | |
| 30 '../content/test/ct/run_chromium_perf_swarming', | |
| 31 ], | |
| 32 'command': [ | |
| 33 'python', | |
| 34 '../content/test/ct/run_ct_top1k.py', | |
| 35 '--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.
| |
| 36 '--benchmark=[[BENCHMARK]]', | |
| 37 '--master=[[MASTER]]', | |
| 38 '--builder=[[BUILDER]]', | |
| 39 '--git_hash=[[GIT_HASH]]', | |
| 40 ], | |
| 41 }, | |
| 42 }], | |
| 43 ] | |
| 44 } | |
| OLD | NEW |