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

Side by Side Diff: extensions/extensions_browsertests.isolate

Issue 996173004: Convert more isolate files to respect use_x11 for Xvfb usage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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" or OS=="mac" or OS=="win"', { 6 ['use_x11==0', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'command': [
9 '../net/data/',
10 '../net/tools/testserver/',
11 '../testing/test_env.py', 9 '../testing/test_env.py',
12 '../third_party/pyftpdlib/',
13 '../third_party/pywebsocket/',
14 '../third_party/tlslite/',
15 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)', 10 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)',
16 '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 11 '--brave-new-test-launcher',
17 'test/data/', 12 '--test-launcher-bot-mode',
13 '--asan=<(asan)',
14 '--msan=<(msan)',
15 '--tsan=<(tsan)',
18 ], 16 ],
19 }, 17 },
20 }], 18 }],
21 ['OS=="linux"', { 19 ['use_x11==1', {
22 'variables': { 20 'variables': {
23 'command': [ 21 'command': [
24 '../testing/xvfb.py', 22 '../testing/xvfb.py',
25 '<(PRODUCT_DIR)', 23 '<(PRODUCT_DIR)',
26 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)', 24 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)',
27 '--brave-new-test-launcher', 25 '--brave-new-test-launcher',
28 '--test-launcher-bot-mode', 26 '--test-launcher-bot-mode',
29 '--asan=<(asan)', 27 '--asan=<(asan)',
30 '--msan=<(msan)', 28 '--msan=<(msan)',
31 '--tsan=<(tsan)', 29 '--tsan=<(tsan)',
32 ], 30 ],
33 'files': [ 31 'files': [
34 '../testing/xvfb.py', 32 '../testing/xvfb.py',
33 ],
34 },
35 }],
36 ['OS=="linux" or OS=="mac" or OS=="win"', {
37 'variables': {
38 'files': [
39 '../net/data/',
40 '../net/tools/testserver/',
41 '../testing/test_env.py',
42 '../third_party/pyftpdlib/',
43 '../third_party/pywebsocket/',
44 '../third_party/tlslite/',
45 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)',
46 '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
47 'test/data/',
48 ],
49 },
50 }],
51 ['OS=="linux"', {
52 'variables': {
53 'files': [
35 '<(PRODUCT_DIR)/libosmesa.so', 54 '<(PRODUCT_DIR)/libosmesa.so',
36 ], 55 ],
37 }, 56 },
38 }], 57 }],
39 ['OS=="linux" and use_ozone==0', { 58 ['OS=="linux" and use_ozone==0', {
40 'variables': { 59 'variables': {
41 'files': [ 60 'files': [
42 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 61 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
43 ], 62 ],
44 }, 63 },
45 }], 64 }],
46 ['OS=="mac" or OS=="win"', {
47 'variables': {
48 'command': [
49 '../testing/test_env.py',
50 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)',
51 '--brave-new-test-launcher',
52 '--test-launcher-bot-mode',
53 '--asan=<(asan)',
54 '--msan=<(msan)',
55 '--tsan=<(tsan)',
56 ],
57 },
58 }],
59 ['OS=="mac" and asan==1 and fastbuild==0', { 65 ['OS=="mac" and asan==1 and fastbuild==0', {
60 'variables': { 66 'variables': {
61 'files': [ 67 'files': [
62 '<(PRODUCT_DIR)/extensions_browsertests.dSYM/', 68 '<(PRODUCT_DIR)/extensions_browsertests.dSYM/',
63 ], 69 ],
64 }, 70 },
65 }], 71 }],
66 ['OS=="win" and target_arch=="ia32"', { 72 ['OS=="win" and target_arch=="ia32"', {
67 'variables': { 73 'variables': {
68 'files': [ 74 'files': [
69 '<(PRODUCT_DIR)/wow_helper.exe', 75 '<(PRODUCT_DIR)/wow_helper.exe',
70 ], 76 ],
71 }, 77 },
72 }], 78 }],
73 ], 79 ],
74 'includes': [ 80 'includes': [
75 '../base/base.isolate', 81 '../base/base.isolate',
76 '../gin/v8.isolate', 82 '../gin/v8.isolate',
77 ], 83 ],
78 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698