summaryrefslogtreecommitdiffstats
path: root/chrome/ct_top1k.isolate
blob: 3d0d97ea6a057dc07d1e477e45dc0c1020cd0f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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/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/',
          '../testing/variations/',
          '../third_party/catapult/',
          '../tools/perf/',
          '../tools/variations/',
          '../testing/test_env.py',
          '../out/Release/',

          '../content/test/ct/run_ct_top1k.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)',
          '--benchmark', '<(BENCHMARK)',
          '--out_dir', '${ISOLATED_OUTDIR}',
        ],
      },
    }],
  ]
}