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

Side by Side Diff: chrome/browser_tests.isolate

Issue 895923002: Support MSan/TSan in test isolation and test_env.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix error Created 5 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
« no previous file with comments | « cc/cc_unittests.isolate ('k') | chrome/interactive_ui_tests.isolate » ('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) 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=="linux"', { 6 ['OS=="linux"', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '../testing/xvfb.py', 9 '../testing/xvfb.py',
10 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)',
11 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', 11 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
12 '--test-launcher-bot-mode', 12 '--test-launcher-bot-mode',
13 '--asan=<(asan)', 13 '--asan=<(asan)',
14 '--lsan=<(lsan)', 14 '--lsan=<(lsan)',
15 '--msan=<(msan)',
16 '--tsan=<(tsan)',
15 ], 17 ],
16 'files': [ 18 'files': [
17 '../testing/xvfb.py', 19 '../testing/xvfb.py',
18 '<(PRODUCT_DIR)/libclearkeycdm.so', 20 '<(PRODUCT_DIR)/libclearkeycdm.so',
19 '<(PRODUCT_DIR)/libclearkeycdmadapter.so', 21 '<(PRODUCT_DIR)/libclearkeycdmadapter.so',
20 '<(PRODUCT_DIR)/libppapi_tests.so', 22 '<(PRODUCT_DIR)/libppapi_tests.so',
21 ], 23 ],
22 }, 24 },
23 }], 25 }],
24 ['OS=="linux" and use_ozone==0', { 26 ['OS=="linux" and use_ozone==0', {
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 }, 169 },
168 }], 170 }],
169 ['OS=="mac" or OS=="win"', { 171 ['OS=="mac" or OS=="win"', {
170 'variables': { 172 'variables': {
171 'command': [ 173 'command': [
172 '../testing/test_env.py', 174 '../testing/test_env.py',
173 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', 175 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
174 '--test-launcher-bot-mode', 176 '--test-launcher-bot-mode',
175 '--asan=<(asan)', 177 '--asan=<(asan)',
176 '--lsan=<(lsan)', 178 '--lsan=<(lsan)',
179 '--msan=<(msan)',
180 '--tsan=<(tsan)',
177 ], 181 ],
178 }, 182 },
179 }], 183 }],
180 ['OS=="win"', { 184 ['OS=="win"', {
181 'variables': { 185 'variables': {
182 'files': [ 186 'files': [
183 '../native_client/build/build_nexe.py', 187 '../native_client/build/build_nexe.py',
184 '<(PRODUCT_DIR)/chrome_elf.dll', 188 '<(PRODUCT_DIR)/chrome_elf.dll',
185 '<(PRODUCT_DIR)/clearkeycdm.dll', 189 '<(PRODUCT_DIR)/clearkeycdm.dll',
186 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', 190 '<(PRODUCT_DIR)/clearkeycdmadapter.dll',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 'browser/chromeos/login/test/https_forwarder.py', 236 'browser/chromeos/login/test/https_forwarder.py',
233 ], 237 ],
234 }, 238 },
235 }], 239 }],
236 ], 240 ],
237 'includes': [ 241 'includes': [
238 '../base/base.isolate', 242 '../base/base.isolate',
239 'chrome.isolate', 243 'chrome.isolate',
240 ], 244 ],
241 } 245 }
OLDNEW
« no previous file with comments | « cc/cc_unittests.isolate ('k') | chrome/interactive_ui_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698