run-gcmole.isolate 793 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright 2016 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
  'variables': {
    'command': [
      'run-gcmole.py',
    ],
    'files': [
      'gccause.lua',
      'gcmole.lua',
      'parallel.py',
      'run-gcmole.py',
      # The following contains all relevant source and gyp files.
15
      '../../base/',
16
      '../../include/',
17 18
      '../../src/',
      '../../test/cctest/',
19
      '../../third_party/icu/source/',
20 21 22 23 24 25 26 27 28 29 30 31 32 33
    ],
  },
  'conditions': [
    ['gcmole==1', {
      'variables': {
        'files': [
          # This assumes gcmole tools have been fetched by a hook
          # into v8/tools/gcmole/gcmole_tools.
          'gcmole-tools/',
        ],
      },
    }],
  ],
}