OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'includes': [ | 5 'includes': [ |
6 'chrome.isolate', | 6 'chrome.isolate', |
7 ], | 7 ], |
8 'conditions': [ | 8 'conditions': [ |
9 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | 9 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { |
10 # This list comes from running: | 10 # This list comes from running: |
11 # tools/perf/run_measurement --print-bootstrap-deps | 11 # tools/perf/run_measurement --print-bootstrap-deps |
12 # and filtering out obvious undesired dependencies: | 12 # and filtering out obvious undesired dependencies: |
13 # 'src/tools/perf/page_sets/' | 13 # 'src/tools/perf/page_sets/' |
14 # 'src/tools/perf/measurements/' | 14 # 'src/tools/perf/measurements/' |
15 # 'src/tools/perf/metrics/' | 15 # 'src/tools/perf/metrics/' |
16 # 'src/tools/perf/profile_creators/' | 16 # 'src/tools/perf/profile_creators/' |
17 # 'src/tools/perf/benchmarks/' | 17 # 'src/tools/perf/benchmarks/' |
18 # 'src/chrome/test/data/extensions/profiles/' | 18 # 'src/chrome/test/data/extensions/profiles/' |
19 # Note that the dependency on ../build/android/ was made more | 19 # Note that the dependency on ../build/android/ was made more |
20 # precise to ../build/android/pylib/. | 20 # precise to ../build/android/pylib/. |
21 'variables': { | 21 'variables': { |
22 'isolate_dependency_tracked': [ | 22 'files': [ |
| 23 '../build/android/pylib/', |
| 24 '../build/util/', |
23 '../third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.m
in.js', | 25 '../third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.m
in.js', |
24 '../third_party/WebKit/PerformanceTests/resources/statistics.js', | 26 '../third_party/WebKit/PerformanceTests/resources/statistics.js', |
| 27 '../third_party/android_testrunner/', |
25 '../third_party/flot/jquery.flot.min.js', | 28 '../third_party/flot/jquery.flot.min.js', |
| 29 '../third_party/webpagereplay/', |
| 30 '../tools/crx_id/', |
26 '../tools/perf/unit-info.json', | 31 '../tools/perf/unit-info.json', |
| 32 '../tools/telemetry/', |
27 '<(PRODUCT_DIR)/bitmaptools<(EXECUTABLE_SUFFIX)', | 33 '<(PRODUCT_DIR)/bitmaptools<(EXECUTABLE_SUFFIX)', |
28 ], | 34 ], |
29 'isolate_dependency_untracked': [ | |
30 '../build/android/pylib/', | |
31 '../build/util/', | |
32 '../tools/crx_id/', | |
33 '../tools/telemetry/', | |
34 '../third_party/android_testrunner/', | |
35 '../third_party/webpagereplay/', | |
36 ], | |
37 }, | 35 }, |
38 }], | 36 }], |
39 ] | 37 ] |
40 } | 38 } |
OLD | NEW |