summaryrefslogtreecommitdiffstats
path: root/content/telemetry.isolate
blob: 538c6e7ce69f4854ba2a607102076f49e11f7313 (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.
{
  'conditions': [
    ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
      'variables': {
        'files': [
          # This list comes from running:
          #   tools/perf/run_benchmark --print-bootstrap-deps
          # and filtering out obvious undesired dependencies:
          #   'src/tools/perf/page_sets/'
          #   'src/tools/perf/measurements/'
          #   'src/tools/perf/metrics/'
          #   'src/tools/perf/profile_creators/'
          #   'src/tools/perf/benchmarks/'
          #   'src/chrome/test/data/extensions/profiles/'
          # Note that the dependency on ../build/android/ was made more
          # precise to ../build/android/pylib/.
          '../build/android/pylib/',
          '../build/util/',
          '../third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.min.js',
          '../third_party/WebKit/PerformanceTests/resources/statistics.js',
          '../third_party/flot/jquery.flot.min.js',
          '../third_party/webpagereplay/',
          '../tools/telemetry/',
          # For Telemetry's screenshot support.
          '<(PRODUCT_DIR)/bitmaptools<(EXECUTABLE_SUFFIX)',
        ],
      },
    }],
  ]
}