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

Side by Side Diff: chrome/unit_tests.isolate

Issue 136973003: Make all the files mapped in when running unit_tests read only on Linux and OSX. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase properly, disable on Windows Created 6 years, 10 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
« no previous file with comments | « no previous file | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 5 'conditions': [
6 ['OS=="android" or OS=="linux"', { 6 ['OS=="android" or OS=="linux"', {
7 'variables': { 7 'variables': {
8 'isolate_dependency_untracked': [ 8 'isolate_dependency_untracked': [
9 '<(PRODUCT_DIR)/test_data/', 9 '<(PRODUCT_DIR)/test_data/',
10 ], 10 ],
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 'isolate_dependency_untracked': [ 66 'isolate_dependency_untracked': [
67 '../net/tools/testserver/', 67 '../net/tools/testserver/',
68 '../third_party/pyftpdlib/', 68 '../third_party/pyftpdlib/',
69 '../third_party/pywebsocket/', 69 '../third_party/pywebsocket/',
70 '../third_party/tlslite/', 70 '../third_party/tlslite/',
71 '../tools/swarming_client/', 71 '../tools/swarming_client/',
72 '<(PRODUCT_DIR)/pyproto/', 72 '<(PRODUCT_DIR)/pyproto/',
73 ], 73 ],
74 }, 74 },
75 }], 75 }],
76 ['OS=="linux" or OS=="mac"', {
77 'variables': {
78 # Can't be enabled on Windows due to http://crbug.com/342913
79 'read_only': 1,
80 },
81 }],
76 ['OS=="mac"', { 82 ['OS=="mac"', {
77 'variables': { 83 'variables': {
78 'isolate_dependency_tracked': [ 84 'isolate_dependency_tracked': [
79 '<(PRODUCT_DIR)/ffmpegsumo.so', 85 '<(PRODUCT_DIR)/ffmpegsumo.so',
80 ], 86 ],
81 'isolate_dependency_untracked': [ 87 'isolate_dependency_untracked': [
82 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 88 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
83 ], 89 ],
84 }, 90 },
85 }], 91 }],
(...skipping 24 matching lines...) Expand all
110 '../skia/ext/data/', 116 '../skia/ext/data/',
111 '../ui/base/glib/', 117 '../ui/base/glib/',
112 ], 118 ],
113 }, 119 },
114 }], 120 }],
115 ], 121 ],
116 'includes': [ 122 'includes': [
117 '../third_party/icu/icu.isolate', 123 '../third_party/icu/icu.isolate',
118 ], 124 ],
119 } 125 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698