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

Side by Side Diff: chrome/interactive_ui_tests.isolate

Issue 908313004: Use Xvfb in isolated testing only if use_x11 is set (reland) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments from maruel@ Created 5 years, 9 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/sync_integration_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 ['use_x11==0', {
7 'variables': {
8 'command': [
9 '../testing/test_env.py',
10 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
11 '--test-launcher-bot-mode',
12 '--asan=<(asan)',
13 '--msan=<(msan)',
14 '--tsan=<(tsan)',
15 ],
16 },
17 }],
18 ['use_x11==1', {
7 'variables': { 19 'variables': {
8 'command': [ 20 'command': [
9 '../testing/xvfb.py', 21 '../testing/xvfb.py',
10 '<(PRODUCT_DIR)', 22 '<(PRODUCT_DIR)',
11 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 23 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
12 '--test-launcher-bot-mode', 24 '--test-launcher-bot-mode',
13 '--asan=<(asan)', 25 '--asan=<(asan)',
14 '--msan=<(msan)', 26 '--msan=<(msan)',
15 '--tsan=<(tsan)', 27 '--tsan=<(tsan)',
16 ], 28 ],
17 'files': [ 29 'files': [
18 '../testing/xvfb.py', 30 '../testing/xvfb.py',
31 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
32 ],
33 },
34 }],
35 ['OS=="linux"', {
36 'variables': {
37 'files': [
19 '<(PRODUCT_DIR)/libffmpegsumo.so', 38 '<(PRODUCT_DIR)/libffmpegsumo.so',
20 '<(PRODUCT_DIR)/libosmesa.so', 39 '<(PRODUCT_DIR)/libosmesa.so',
21 '<(PRODUCT_DIR)/libppapi_tests.so', 40 '<(PRODUCT_DIR)/libppapi_tests.so',
22 '<(PRODUCT_DIR)/pyproto/google/', 41 '<(PRODUCT_DIR)/pyproto/google/',
23 ], 42 ],
24 }, 43 },
25 }], 44 }],
26 ['OS=="linux" and use_ozone==0', {
27 'variables': {
28 'files': [
29 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
30 ],
31 },
32 }],
33 ['OS=="linux" or OS=="mac" or OS=="win"', { 45 ['OS=="linux" or OS=="mac" or OS=="win"', {
34 'variables': { 46 'variables': {
35 'files': [ 47 'files': [
36 '../net/data/ssl/certificates/', 48 '../net/data/ssl/certificates/',
37 '../net/tools/testserver/', 49 '../net/tools/testserver/',
38 '../ppapi/tests/test_case.html', 50 '../ppapi/tests/test_case.html',
39 '../ppapi/tests/test_page.css', 51 '../ppapi/tests/test_page.css',
40 '../testing/test_env.py', 52 '../testing/test_env.py',
41 '../third_party/pyftpdlib/', 53 '../third_party/pyftpdlib/',
42 '../third_party/pywebsocket/', 54 '../third_party/pywebsocket/',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'files': [ 86 'files': [
75 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 87 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
76 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/', 88 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/',
77 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/', 89 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/',
78 '<(PRODUCT_DIR)/interactive_ui_tests.dSYM/', 90 '<(PRODUCT_DIR)/interactive_ui_tests.dSYM/',
79 '<(PRODUCT_DIR)/osmesa.so.dSYM/', 91 '<(PRODUCT_DIR)/osmesa.so.dSYM/',
80 '<(PRODUCT_DIR)/ppapi_tests.plugin.dSYM/', 92 '<(PRODUCT_DIR)/ppapi_tests.plugin.dSYM/',
81 ], 93 ],
82 }, 94 },
83 }], 95 }],
84 ['OS=="mac" or OS=="win"', {
85 'variables': {
86 'command': [
87 '../testing/test_env.py',
88 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
89 '--test-launcher-bot-mode',
90 '--asan=<(asan)',
91 '--msan=<(msan)',
92 '--tsan=<(tsan)',
93 ],
94 },
95 }],
96 ['OS=="win"', { 96 ['OS=="win"', {
97 'variables': { 97 'variables': {
98 'files': [ 98 'files': [
99 '<(PRODUCT_DIR)/chrome_elf.dll', 99 '<(PRODUCT_DIR)/chrome_elf.dll',
100 '<(PRODUCT_DIR)/d3dcompiler_47.dll', 100 '<(PRODUCT_DIR)/d3dcompiler_47.dll',
101 '<(PRODUCT_DIR)/ffmpegsumo.dll', 101 '<(PRODUCT_DIR)/ffmpegsumo.dll',
102 '<(PRODUCT_DIR)/libEGL.dll', 102 '<(PRODUCT_DIR)/libEGL.dll',
103 '<(PRODUCT_DIR)/libGLESv2.dll', 103 '<(PRODUCT_DIR)/libGLESv2.dll',
104 '<(PRODUCT_DIR)/osmesa.dll', 104 '<(PRODUCT_DIR)/osmesa.dll',
105 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll', 105 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll',
(...skipping 26 matching lines...) Expand all
132 '<(PRODUCT_DIR)/resources/chromeos/', 132 '<(PRODUCT_DIR)/resources/chromeos/',
133 ], 133 ],
134 }, 134 },
135 }], 135 }],
136 ], 136 ],
137 'includes': [ 137 'includes': [
138 '../base/base.isolate', 138 '../base/base.isolate',
139 '../gin/v8.isolate', 139 '../gin/v8.isolate',
140 ], 140 ],
141 } 141 }
OLDNEW
« no previous file with comments | « chrome/browser_tests.isolate ('k') | chrome/sync_integration_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698