Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: chrome/telemetry.isolate

Issue 121493004: [telemetry] Implement per-pixel algorithms in Bitmap as a C++ extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update conditions Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/all.gyp ('k') | tools/telemetry/telemetry.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # This list comes from running: 8 'conditions': [
9 # tools/perf/run_measurement --print-bootstrap-deps 9 ['OS=="win" or OS=="linux" or OS=="mac" or OS=="android" or OS=="chromeos"', {
M-A Ruel 2014/01/03 01:44:36 sort the conditions; OS=="android" or OS=="linux"
szym 2014/01/05 21:27:13 Done.
10 # and filtering out obvious undesired dependencies: 10 # This list comes from running:
11 # 'src/tools/perf/page_sets/' 11 # tools/perf/run_measurement --print-bootstrap-deps
12 # 'src/tools/perf/measurements/' 12 # and filtering out obvious undesired dependencies:
13 # 'src/tools/perf/metrics/' 13 # 'src/tools/perf/page_sets/'
14 # 'src/tools/perf/profile_creators/' 14 # 'src/tools/perf/measurements/'
15 # 'src/tools/perf/benchmarks/' 15 # 'src/tools/perf/metrics/'
16 # 'src/chrome/test/data/extensions/profiles/' 16 # 'src/tools/perf/profile_creators/'
17 # Note that the dependency on ../build/android/ was made more 17 # 'src/tools/perf/benchmarks/'
18 # precise to ../build/android/pylib/. 18 # 'src/chrome/test/data/extensions/profiles/'
19 'variables': { 19 # Note that the dependency on ../build/android/ was made more
20 'isolate_dependency_tracked': [ 20 # precise to ../build/android/pylib/.
21 '../chrome/test/functional/webpagereplay.py', 21 'variables': {
22 '../third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.min.j s', 22 'isolate_dependency_tracked': [
23 '../third_party/WebKit/PerformanceTests/resources/statistics.js', 23 '../chrome/test/functional/webpagereplay.py',
24 '../third_party/flot/jquery.flot.min.js', 24 '../third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.m in.js',
25 '../tools/perf/unit-info.json', 25 '../third_party/WebKit/PerformanceTests/resources/statistics.js',
26 ], 26 '../third_party/flot/jquery.flot.min.js',
27 'isolate_dependency_untracked': [ 27 '../tools/perf/unit-info.json',
28 '../build/android/pylib/', 28 ],
29 '../build/util/', 29 'isolate_dependency_untracked': [
30 '../tools/crx_id/', 30 '../build/android/pylib/',
31 '../tools/telemetry/', 31 '../build/util/',
32 '../third_party/android_testrunner/', 32 '../tools/crx_id/',
33 '../third_party/webpagereplay/', 33 '../tools/telemetry/',
34 ], 34 '../third_party/android_testrunner/',
35 }, 35 '../third_party/webpagereplay/',
36 ],
37 },
38 }],
39 ['OS=="linux" or OS=="mac" or OS=="android"', {
40 'variables': {
41 'isolate_dependency_tracked': [
42 '<(PRODUCT_DIR)/bitmaptools.so',
43 ],
44 },
45 }],
46 ['OS=="win"', {
47 'variables': {
48 'isolate_dependency_tracked': [
49 '<(PRODUCT_DIR)/bitmaptools.pyd',
50 ],
51 },
52 }],
53 ]
36 } 54 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | tools/telemetry/telemetry.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698