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

Side by Side Diff: content/content_browsertests.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 | « components/components_unittests.isolate ('k') | content/content_unittests.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) 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 'conditions': [ 5 'conditions': [
6 ['OS=="android"', { 6 ['OS=="android"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', 9 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak',
10 ], 10 ],
(...skipping 24 matching lines...) Expand all
35 }], 35 }],
36 ['OS=="linux"', { 36 ['OS=="linux"', {
37 'variables': { 37 'variables': {
38 'command': [ 38 'command': [
39 '../testing/xvfb.py', 39 '../testing/xvfb.py',
40 '<(PRODUCT_DIR)', 40 '<(PRODUCT_DIR)',
41 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', 41 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)',
42 '--test-launcher-bot-mode', 42 '--test-launcher-bot-mode',
43 '--asan=<(asan)', 43 '--asan=<(asan)',
44 '--lsan=<(lsan)', 44 '--lsan=<(lsan)',
45 '--msan=<(msan)',
46 '--tsan=<(tsan)',
45 ], 47 ],
46 'files': [ 48 'files': [
47 '../testing/xvfb.py', 49 '../testing/xvfb.py',
48 '<(PRODUCT_DIR)/content_shell.pak', 50 '<(PRODUCT_DIR)/content_shell.pak',
49 '<(PRODUCT_DIR)/libffmpegsumo.so', 51 '<(PRODUCT_DIR)/libffmpegsumo.so',
50 '<(PRODUCT_DIR)/libosmesa.so', 52 '<(PRODUCT_DIR)/libosmesa.so',
51 '<(PRODUCT_DIR)/libppapi_tests.so', 53 '<(PRODUCT_DIR)/libppapi_tests.so',
52 ], 54 ],
53 }, 55 },
54 }], 56 }],
(...skipping 30 matching lines...) Expand all
85 }, 87 },
86 }], 88 }],
87 ['OS=="mac" or OS=="win"', { 89 ['OS=="mac" or OS=="win"', {
88 'variables': { 90 'variables': {
89 'command': [ 91 'command': [
90 '../testing/test_env.py', 92 '../testing/test_env.py',
91 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', 93 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)',
92 '--test-launcher-bot-mode', 94 '--test-launcher-bot-mode',
93 '--asan=<(asan)', 95 '--asan=<(asan)',
94 '--lsan=<(lsan)', 96 '--lsan=<(lsan)',
97 '--msan=<(msan)',
98 '--tsan=<(tsan)',
95 ], 99 ],
96 }, 100 },
97 }], 101 }],
98 ['OS=="win"', { 102 ['OS=="win"', {
99 'variables': { 103 'variables': {
100 'files': [ 104 'files': [
101 '<(PRODUCT_DIR)/content_shell.pak', 105 '<(PRODUCT_DIR)/content_shell.pak',
102 '<(PRODUCT_DIR)/ffmpegsumo.dll', 106 '<(PRODUCT_DIR)/ffmpegsumo.dll',
103 '<(PRODUCT_DIR)/osmesa.dll', 107 '<(PRODUCT_DIR)/osmesa.dll',
104 '<(PRODUCT_DIR)/plugins/np_test_netscape_plugin.dll', 108 '<(PRODUCT_DIR)/plugins/np_test_netscape_plugin.dll',
(...skipping 15 matching lines...) Expand all
120 '<(PRODUCT_DIR)/content_browsertests.exe.pdb', 124 '<(PRODUCT_DIR)/content_browsertests.exe.pdb',
121 ], 125 ],
122 }, 126 },
123 }], 127 }],
124 ], 128 ],
125 'includes': [ 129 'includes': [
126 '../base/base.isolate', 130 '../base/base.isolate',
127 '../gin/v8.isolate', 131 '../gin/v8.isolate',
128 ], 132 ],
129 } 133 }
OLDNEW
« no previous file with comments | « components/components_unittests.isolate ('k') | content/content_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698