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

Side by Side Diff: content/content_unittests.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 | « content/content_browsertests.isolate ('k') | extensions/extensions_browsertests.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" or OS=="linux" or OS=="mac" or OS=="win"', { 6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '../media/test/data/', 9 '../media/test/data/',
10 'test/data/', 10 'test/data/',
(...skipping 25 matching lines...) Expand all
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_unittests<(EXECUTABLE_SUFFIX)', 41 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)',
42 '--brave-new-test-launcher', 42 '--brave-new-test-launcher',
43 '--test-launcher-bot-mode', 43 '--test-launcher-bot-mode',
44 '--asan=<(asan)', 44 '--asan=<(asan)',
45 '--lsan=<(lsan)', 45 '--lsan=<(lsan)',
46 '--msan=<(msan)',
47 '--tsan=<(tsan)',
46 ], 48 ],
47 'files': [ 49 'files': [
48 '../testing/xvfb.py', 50 '../testing/xvfb.py',
49 '<(PRODUCT_DIR)/libffmpegsumo.so', 51 '<(PRODUCT_DIR)/libffmpegsumo.so',
50 '<(PRODUCT_DIR)/libosmesa.so', 52 '<(PRODUCT_DIR)/libosmesa.so',
51 ], 53 ],
52 }, 54 },
53 }], 55 }],
54 ['OS=="linux" and use_ozone==0', { 56 ['OS=="linux" and use_ozone==0', {
55 'variables': { 57 'variables': {
56 'files': [ 58 'files': [
57 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 59 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
58 ], 60 ],
59 }, 61 },
60 }], 62 }],
61 ['OS=="mac"', { 63 ['OS=="mac"', {
62 'variables': { 64 'variables': {
63 'command': [ 65 'command': [
64 '../testing/test_env.py', 66 '../testing/test_env.py',
65 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', 67 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)',
66 '--brave-new-test-launcher', 68 '--brave-new-test-launcher',
67 '--test-launcher-bot-mode', 69 '--test-launcher-bot-mode',
68 '--asan=<(asan)', 70 '--asan=<(asan)',
69 '--lsan=<(lsan)', 71 '--lsan=<(lsan)',
72 '--msan=<(msan)',
73 '--tsan=<(tsan)',
70 ], 74 ],
71 'files': [ 75 'files': [
72 '<(PRODUCT_DIR)/ffmpegsumo.so', 76 '<(PRODUCT_DIR)/ffmpegsumo.so',
73 '<(PRODUCT_DIR)/osmesa.so', 77 '<(PRODUCT_DIR)/osmesa.so',
74 ], 78 ],
75 }, 79 },
76 }], 80 }],
77 ['OS=="win"', { 81 ['OS=="win"', {
78 'variables': { 82 'variables': {
79 'command': [ 83 'command': [
80 '../testing/test_env.py', 84 '../testing/test_env.py',
81 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', 85 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)',
82 '--brave-new-test-launcher', 86 '--brave-new-test-launcher',
83 '--test-launcher-bot-mode', 87 '--test-launcher-bot-mode',
84 '--asan=<(asan)', 88 '--asan=<(asan)',
85 '--lsan=<(lsan)', 89 '--lsan=<(lsan)',
90 '--msan=<(msan)',
91 '--tsan=<(tsan)',
86 ], 92 ],
87 'files': [ 93 'files': [
88 '<(PRODUCT_DIR)/ffmpegsumo.dll', 94 '<(PRODUCT_DIR)/ffmpegsumo.dll',
89 '<(PRODUCT_DIR)/osmesa.dll', 95 '<(PRODUCT_DIR)/osmesa.dll',
90 ], 96 ],
91 }, 97 },
92 }], 98 }],
93 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 99 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
94 'variables': { 100 'variables': {
95 'files': [ 101 'files': [
96 '<(PRODUCT_DIR)/content_unittests.exe.pdb', 102 '<(PRODUCT_DIR)/content_unittests.exe.pdb',
97 ], 103 ],
98 }, 104 },
99 }], 105 }],
100 ], 106 ],
101 'includes': [ 107 'includes': [
102 '../base/base.isolate', 108 '../base/base.isolate',
103 '../gin/v8.isolate', 109 '../gin/v8.isolate',
104 ], 110 ],
105 } 111 }
OLDNEW
« no previous file with comments | « content/content_browsertests.isolate ('k') | extensions/extensions_browsertests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698