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

Side by Side Diff: chrome/telemetry.isolate

Issue 130153003: [telemetry] Implement per-pixel algorithms in Bitmap as a C++ extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove blank from <(output_path) 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 '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:
(...skipping 18 matching lines...) Expand all
29 'isolate_dependency_untracked': [ 29 'isolate_dependency_untracked': [
30 '../build/android/pylib/', 30 '../build/android/pylib/',
31 '../build/util/', 31 '../build/util/',
32 '../tools/crx_id/', 32 '../tools/crx_id/',
33 '../tools/telemetry/', 33 '../tools/telemetry/',
34 '../third_party/android_testrunner/', 34 '../third_party/android_testrunner/',
35 '../third_party/webpagereplay/', 35 '../third_party/webpagereplay/',
36 ], 36 ],
37 }, 37 },
38 }], 38 }],
39 ['OS=="android" or OS=="linux" or OS=="mac"', {
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 }],
39 ] 53 ]
40 } 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