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 'includes': [ | |
6 'telemetry_binary_manager.isolate', | |
7 ], | |
8 'conditions': [ | |
9 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | |
10 'variables': { | |
11 'files': [ | |
12 # This list comes from running: | |
13 # tools/perf/run_benchmark --print-bootstrap-deps | |
14 # and filtering out obvious undesired dependencies: | |
15 # 'src/tools/perf/page_sets/' | |
16 # 'src/tools/perf/measurements/' | |
17 # 'src/tools/perf/metrics/' | |
18 # 'src/tools/perf/profile_creators/' | |
19 # 'src/tools/perf/benchmarks/' | |
20 # 'src/chrome/test/data/extensions/profiles/' | |
21 # Note that the dependency on ../build/android/ was made more | |
22 # precise to ../build/android/pylib/. | |
23 '../build/android/pylib/', | |
24 '../build/android/devil/', | |
25 '../build/util/', | |
26 '../third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.m
in.js', | |
27 '../third_party/WebKit/PerformanceTests/resources/statistics.js', | |
28 '../third_party/flot/jquery.flot.min.js', | |
29 '../third_party/webpagereplay/', | |
30 '../tools/telemetry/', | |
31 # For Telemetry's screenshot support. | |
32 '<(PRODUCT_DIR)/bitmaptools<(EXECUTABLE_SUFFIX)', | |
33 ], | |
34 }, | |
35 }], | |
36 ] | |
37 } | |
OLD | NEW |