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

Side by Side Diff: chrome/interactive_ui_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 | « chrome/browser_tests.isolate ('k') | chrome/unit_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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 '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)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 11 '<(PRODUCT_DIR)/interactive_ui_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)/libffmpegsumo.so', 20 '<(PRODUCT_DIR)/libffmpegsumo.so',
19 '<(PRODUCT_DIR)/libosmesa.so', 21 '<(PRODUCT_DIR)/libosmesa.so',
20 '<(PRODUCT_DIR)/libppapi_tests.so', 22 '<(PRODUCT_DIR)/libppapi_tests.so',
21 '<(PRODUCT_DIR)/pyproto/google/', 23 '<(PRODUCT_DIR)/pyproto/google/',
22 ], 24 ],
23 }, 25 },
24 }], 26 }],
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 }, 71 },
70 }], 72 }],
71 ['OS=="mac" or OS=="win"', { 73 ['OS=="mac" or OS=="win"', {
72 'variables': { 74 'variables': {
73 'command': [ 75 'command': [
74 '../testing/test_env.py', 76 '../testing/test_env.py',
75 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 77 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
76 '--test-launcher-bot-mode', 78 '--test-launcher-bot-mode',
77 '--asan=<(asan)', 79 '--asan=<(asan)',
78 '--lsan=<(lsan)', 80 '--lsan=<(lsan)',
81 '--msan=<(msan)',
82 '--tsan=<(tsan)',
79 ], 83 ],
80 }, 84 },
81 }], 85 }],
82 ['OS=="win"', { 86 ['OS=="win"', {
83 'variables': { 87 'variables': {
84 'files': [ 88 'files': [
85 '<(PRODUCT_DIR)/chrome_elf.dll', 89 '<(PRODUCT_DIR)/chrome_elf.dll',
86 '<(PRODUCT_DIR)/d3dcompiler_47.dll', 90 '<(PRODUCT_DIR)/d3dcompiler_47.dll',
87 '<(PRODUCT_DIR)/ffmpegsumo.dll', 91 '<(PRODUCT_DIR)/ffmpegsumo.dll',
88 '<(PRODUCT_DIR)/libEGL.dll', 92 '<(PRODUCT_DIR)/libEGL.dll',
(...skipping 29 matching lines...) Expand all
118 '<(PRODUCT_DIR)/resources/chromeos/', 122 '<(PRODUCT_DIR)/resources/chromeos/',
119 ], 123 ],
120 }, 124 },
121 }], 125 }],
122 ], 126 ],
123 'includes': [ 127 'includes': [
124 '../base/base.isolate', 128 '../base/base.isolate',
125 '../gin/v8.isolate', 129 '../gin/v8.isolate',
126 ], 130 ],
127 } 131 }
OLDNEW
« no previous file with comments | « chrome/browser_tests.isolate ('k') | chrome/unit_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698