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

Side by Side Diff: content/content_browsertests.isolate

Issue 2257893002: Delete all test isolate file. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Rebasing against ToT just in case Created 4 years, 3 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 | « components/nacl_loader_unittests.isolate ('k') | content/content_browsertests_apk.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'conditions': [
6 ['use_x11==0', {
7 'variables': {
8 'command': [
9 '../testing/test_env.py',
10 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)',
11 '--test-launcher-bot-mode',
12 '--asan=<(asan)',
13 '--msan=<(msan)',
14 '--tsan=<(tsan)',
15 ],
16 },
17 }],
18 ['use_x11==1', {
19 'variables': {
20 'command': [
21 '../testing/xvfb.py',
22 '<(PRODUCT_DIR)',
23 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)',
24 '--test-launcher-bot-mode',
25 '--asan=<(asan)',
26 '--msan=<(msan)',
27 '--tsan=<(tsan)',
28 ],
29 'files': [
30 '../testing/xvfb.py',
31 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
32 ],
33 },
34 }],
35 ['chromeos==1', {
36 'variables': {
37 'files': [
38 '<(PRODUCT_DIR)/content_shell.pak',
39 ],
40 },
41 }],
42 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
43 'variables': {
44 'files': [
45 '<(PRODUCT_DIR)/content_shell.pak',
46 ],
47 },
48 }],
49 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
50 'variables': {
51 'files': [
52 '../media/test/data/',
53 '../net/data/',
54 'test/data/',
55 ],
56 },
57 }],
58 ['OS=="linux"', {
59 'variables': {
60 'files': [
61 '<(PRODUCT_DIR)/libosmesa.so',
62 ],
63 },
64 }],
65 ['OS=="linux" and enable_plugins==1', {
66 'variables': {
67 'files': [
68 '<(PRODUCT_DIR)/libppapi_tests.so',
69 ],
70 },
71 }],
72 ['enable_plugins==1', {
73 'variables': {
74 'files': [
75 '../ppapi/tests/test_case.html',
76 '../ppapi/tests/test_page.css',
77 ],
78 },
79 }],
80 ['OS=="linux" or OS=="mac" or OS=="win"', {
81 'variables': {
82 'files': [
83 '../net/tools/testserver/',
84 '../testing/test_env.py',
85 '../third_party/pyftpdlib/',
86 '../third_party/pywebsocket/',
87 '../third_party/tlslite/',
88 ],
89 },
90 }],
91 ['OS=="mac"', {
92 'variables': {
93 'files': [
94 '<(PRODUCT_DIR)/Content Shell.app/',
95 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests',
96 ],
97 },
98 }],
99 ['OS=="mac" and asan==1 and fastbuild==0', {
100 'variables': {
101 'files': [
102 '<(PRODUCT_DIR)/Content Shell Framework.framework.dSYM/',
103 '<(PRODUCT_DIR)/Content Shell Helper.app.dSYM/',
104 '<(PRODUCT_DIR)/Content Shell.app.dSYM/',
105 '<(PRODUCT_DIR)/content_browsertests.dSYM/',
106 '<(PRODUCT_DIR)/ppapi_tests.plugin.dSYM/',
107 ],
108 },
109 }],
110 ['OS=="win"', {
111 'variables': {
112 'files': [
113 '<(PRODUCT_DIR)/osmesa.dll',
114 '<(PRODUCT_DIR)/ppapi_tests.dll',
115 ],
116 },
117 }],
118 ['OS=="win" and target_arch=="ia32"', {
119 'variables': {
120 'files': [
121 '<(PRODUCT_DIR)/wow_helper.exe',
122 ],
123 },
124 }],
125 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
126 'variables': {
127 'files': [
128 '<(PRODUCT_DIR)/content_browsertests.exe.pdb',
129 ],
130 },
131 }],
132 ],
133 'includes': [
134 '../base/base.isolate',
135 '../gin/v8.isolate',
136 '../ui/gl/gl.isolate',
137 ],
138 }
OLDNEW
« no previous file with comments | « components/nacl_loader_unittests.isolate ('k') | content/content_browsertests_apk.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698