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

Side by Side Diff: chrome/sync_integration_tests.isolate

Issue 843713002: Revert "Use Xvfb in isolated testing only if use_x11 is set" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/interactive_ui_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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 ['use_x11==0', { 6 ['OS=="linux"', {
7 'variables': {
8 'command': [
9 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
10 '--test-launcher-bot-mode',
11 ],
12 },
13 }],
14 ['use_x11==1', {
15 'variables': { 7 'variables': {
16 'command': [ 8 'command': [
17 '../testing/xvfb.py', 9 '../testing/xvfb.py',
18 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)',
19 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)', 11 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
20 '--test-launcher-bot-mode', 12 '--test-launcher-bot-mode',
21 ], 13 ],
22 'files': [ 14 'files': [
23 '../testing/test_env.py', 15 '../testing/test_env.py',
24 '../testing/xvfb.py', 16 '../testing/xvfb.py',
25 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
26 ],
27 },
28 }],
29 ['OS=="linux"', {
30 'variables': {
31 'files': [
32 '<(PRODUCT_DIR)/libffmpegsumo.so', 17 '<(PRODUCT_DIR)/libffmpegsumo.so',
33 '<(PRODUCT_DIR)/libosmesa.so', 18 '<(PRODUCT_DIR)/libosmesa.so',
34 ], 19 ],
35 }, 20 },
36 }], 21 }],
22 ['OS=="linux" and use_ozone==0', {
23 'variables': {
24 'files': [
25 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
26 ],
27 },
28 }],
37 ['OS=="linux" or OS=="win"', { 29 ['OS=="linux" or OS=="win"', {
38 'variables': { 30 'variables': {
39 'files': [ 31 'files': [
40 '<(PRODUCT_DIR)/chrome_100_percent.pak', 32 '<(PRODUCT_DIR)/chrome_100_percent.pak',
41 '<(PRODUCT_DIR)/locales/en-US.pak', 33 '<(PRODUCT_DIR)/locales/en-US.pak',
42 ], 34 ],
43 }, 35 },
44 }], 36 }],
45 ['OS=="linux" or OS=="mac" or OS=="win"', { 37 ['OS=="linux" or OS=="mac" or OS=="win"', {
46 'variables': { 38 'variables': {
47 'files': [ 39 'files': [
48 '../chrome/test/data/sync/', 40 '../chrome/test/data/sync/',
49 '../net/tools/testserver/', 41 '../net/tools/testserver/',
50 '../sync/tools/testserver/', 42 '../sync/tools/testserver/',
51 '../third_party/pyftpdlib/', 43 '../third_party/pyftpdlib/',
52 '../third_party/pywebsocket/', 44 '../third_party/pywebsocket/',
53 '../third_party/tlslite/', 45 '../third_party/tlslite/',
54 '<(PRODUCT_DIR)/pyproto/', 46 '<(PRODUCT_DIR)/pyproto/',
55 '<(PRODUCT_DIR)/resources.pak', 47 '<(PRODUCT_DIR)/resources.pak',
56 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)', 48 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
57 ], 49 ],
58 }, 50 },
59 }], 51 }],
52 ['OS=="mac" or OS=="win"', {
53 'variables': {
54 'command': [
55 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
56 '--test-launcher-bot-mode',
57 ],
58 },
59 }],
60 ['OS=="mac"', { 60 ['OS=="mac"', {
61 'variables': { 61 'variables': {
62 'files': [ 62 'files': [
63 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 63 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
64 '<(PRODUCT_DIR)/<(mac_product_name).app/', 64 '<(PRODUCT_DIR)/<(mac_product_name).app/',
65 '<(PRODUCT_DIR)/ffmpegsumo.so', 65 '<(PRODUCT_DIR)/ffmpegsumo.so',
66 ], 66 ],
67 }, 67 },
68 }], 68 }],
69 ['OS=="win"', { 69 ['OS=="win"', {
(...skipping 24 matching lines...) Expand all
94 '<(PRODUCT_DIR)/libexif.so', 94 '<(PRODUCT_DIR)/libexif.so',
95 ], 95 ],
96 }, 96 },
97 }], 97 }],
98 ], 98 ],
99 'includes': [ 99 'includes': [
100 '../base/base.isolate', 100 '../base/base.isolate',
101 '../gin/v8.isolate', 101 '../gin/v8.isolate',
102 ], 102 ],
103 } 103 }
OLDNEW
« no previous file with comments | « chrome/interactive_ui_tests.isolate ('k') | chrome/unit_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698