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

Side by Side Diff: components/components_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 'includes': [ 5 'includes': [
6 '../base/base.isolate', 6 '../base/base.isolate',
7 '../gin/v8.isolate', 7 '../gin/v8.isolate',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 ['OS=="linux" or OS=="mac" or OS=="win"', { 10 ['use_x11==0', {
11 'variables': { 11 'variables': {
12 'files': [ 12 'command': [
13 'test/data/',
14 '../testing/test_env.py', 13 '../testing/test_env.py',
15 '<(PRODUCT_DIR)/components_browsertests<(EXECUTABLE_SUFFIX)', 14 '<(PRODUCT_DIR)/components_browsertests<(EXECUTABLE_SUFFIX)',
16 '<(PRODUCT_DIR)/components_tests_resources.pak', 15 '--brave-new-test-launcher',
17 '<(PRODUCT_DIR)/content_shell.pak', 16 '--test-launcher-bot-mode',
17 '--asan=<(asan)',
18 '--msan=<(msan)',
19 '--tsan=<(tsan)',
18 ], 20 ],
19 }, 21 },
20 }], 22 }],
21 ['OS=="linux"', { 23 ['use_x11==1', {
22 'variables': { 24 'variables': {
23 'command': [ 25 'command': [
24 '../testing/xvfb.py', 26 '../testing/xvfb.py',
25 '<(PRODUCT_DIR)', 27 '<(PRODUCT_DIR)',
26 '<(PRODUCT_DIR)/components_browsertests', 28 '<(PRODUCT_DIR)/components_browsertests',
27 '--brave-new-test-launcher', 29 '--brave-new-test-launcher',
28 '--test-launcher-bot-mode', 30 '--test-launcher-bot-mode',
29 '--asan=<(asan)', 31 '--asan=<(asan)',
30 '--msan=<(msan)', 32 '--msan=<(msan)',
31 '--tsan=<(tsan)', 33 '--tsan=<(tsan)',
32 ], 34 ],
33 'files': [ 35 'files': [
34 '../testing/xvfb.py', 36 '../testing/xvfb.py',
37 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
38 ],
39 },
40 }],
41 ['OS=="linux" or OS=="mac" or OS=="win"', {
42 'variables': {
43 'files': [
44 'test/data/',
45 '../testing/test_env.py',
46 '<(PRODUCT_DIR)/components_browsertests<(EXECUTABLE_SUFFIX)',
47 '<(PRODUCT_DIR)/components_tests_resources.pak',
48 '<(PRODUCT_DIR)/content_shell.pak',
49 ],
50 },
51 }],
52 ['OS=="linux"', {
53 'variables': {
54 'files': [
35 '<(PRODUCT_DIR)/libosmesa.so', 55 '<(PRODUCT_DIR)/libosmesa.so',
36 ], 56 ],
37 }, 57 },
38 }], 58 }],
39 ['OS=="linux" and use_ozone==0', {
40 'variables': {
41 'files': [
42 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
43 ],
44 },
45 }],
46 ['OS=="mac" or OS=="win"', {
47 'variables': {
48 'command': [
49 '../testing/test_env.py',
50 '<(PRODUCT_DIR)/components_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"', { 59 ['OS=="mac"', {
60 'variables': { 60 'variables': {
61 'files': [ 61 'files': [
62 '<(PRODUCT_DIR)/Content Shell.app/', 62 '<(PRODUCT_DIR)/Content Shell.app/',
63 ], 63 ],
64 }, 64 },
65 }], 65 }],
66 ['OS=="mac" and asan==1 and fastbuild==0', { 66 ['OS=="mac" and asan==1 and fastbuild==0', {
67 'variables': { 67 'variables': {
68 'files': [ 68 'files': [
69 '<(PRODUCT_DIR)/Content Shell Framework.framework.dSYM/', 69 '<(PRODUCT_DIR)/Content Shell Framework.framework.dSYM/',
70 '<(PRODUCT_DIR)/Content Shell Helper.app.dSYM/', 70 '<(PRODUCT_DIR)/Content Shell Helper.app.dSYM/',
71 '<(PRODUCT_DIR)/Content Shell.app.dSYM/', 71 '<(PRODUCT_DIR)/Content Shell.app.dSYM/',
72 '<(PRODUCT_DIR)/components_browsertests.dSYM/', 72 '<(PRODUCT_DIR)/components_browsertests.dSYM/',
73 ], 73 ],
74 }, 74 },
75 }], 75 }],
76 ], 76 ],
77 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698