aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/ct/ct_skps.isolate
blob: 1289ac99027ffdddc7dad2150351799470cfd9e6 (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
# 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': [
    '../resources.isolate',
  ],
  'conditions': [
    ['OS=="linux"', {
      'variables': {
        'files': [
          '<(TOOL_NAME)',
          'run_ct_skps.py',
          '../../../../skps/<(CHROMIUM_BUILD)/<(PAGE_TYPE)/<(NUM_SLAVES)/slave<(SLAVE_NUM)/',
        ],
        'command': [
          'python',
          'run_ct_skps.py',
          '--slave_num', '<(SLAVE_NUM)',
          '--tool', '<(TOOL_NAME)',
          '--git_hash', '<(GIT_HASH)',
          '--isolated_outdir', '${ISOLATED_OUTDIR}',
          '--configuration', '<(CONFIGURATION)',
          '--builder', '<(BUILDER)',
          '--chromium_build', '<(CHROMIUM_BUILD)',
          '--page_type', '<(PAGE_TYPE)',
          '--num_slaves', '<(NUM_SLAVES)',
        ],
      },
    }],
  ]
}