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

Side by Side Diff: chrome/telemetry.isolate

Issue 140263002: Fixes to make GPU tests run in isolated mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanups. 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 | Annotate | Revision Log
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"', { 39 ['OS=="android" or OS=="linux"', {
M-A Ruel 2014/01/15 23:29:07 This was removed here https://codereview.chromium.
Ken Russell (switch to Gerrit) 2014/01/15 23:46:45 Yes, I mentioned that in the CL description. That
40 'variables': { 40 'variables': {
41 'isolate_dependency_tracked': [ 41 'isolate_dependency_tracked': [
42 '<(PRODUCT_DIR)/bitmaptools.so', 42 '<(PRODUCT_DIR)/bitmaptools.so',
43 ], 43 ],
44 }, 44 },
45 }], 45 }],
46 ['OS=="win"', { 46 ['OS=="win"', {
47 'variables': { 47 'variables': {
48 'isolate_dependency_tracked': [ 48 'isolate_dependency_tracked': [
49 '<(PRODUCT_DIR)/bitmaptools.pyd', 49 '<(PRODUCT_DIR)/bitmaptools.pyd',
50 ], 50 ],
51 }, 51 },
52 }], 52 }],
53 ] 53 ]
54 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698