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

Side by Side Diff: chrome/sync_integration_tests.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 | « chrome/setup_unittests.isolate ('k') | chrome/tab_capture_end2end_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
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'conditions': [
6 ['use_x11==0', {
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': {
16 'command': [
17 '../testing/xvfb.py',
18 '<(PRODUCT_DIR)',
19 '<(PRODUCT_DIR)/sync_integration_tests<(EXECUTABLE_SUFFIX)',
20 '--test-launcher-bot-mode',
21 ],
22 'files': [
23 '../testing/test_env.py',
24 '../testing/xvfb.py',
25 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
26 ],
27 },
28 }],
29 ['OS=="linux"', {
30 'variables': {
31 'files': [
32 '<(PRODUCT_DIR)/libosmesa.so',
33 ],
34 },
35 }],
36 ['OS=="linux" or OS=="win"', {
37 'variables': {
38 'files': [
39 '<(PRODUCT_DIR)/chrome_100_percent.pak',
40 '<(PRODUCT_DIR)/chrome_200_percent.pak',
41 '<(PRODUCT_DIR)/locales/en-US.pak',
42 '<(PRODUCT_DIR)/resources.pak',
43 ],
44 },
45 }],
46 ['OS=="linux" or OS=="mac" or OS=="win"', {
47 'variables': {
48 'files': [
49 '../chrome/test/data/sync/',
50 '../net/tools/testserver/',
51 '../components/sync/tools/testserver/',
52 '../third_party/pyftpdlib/',
53 '../third_party/pywebsocket/',
54 '../third_party/tlslite/',
55 '<(PRODUCT_DIR)/pyproto/',
56 ],
57 },
58 }],
59 ['OS=="mac"', {
60 'variables': {
61 'files': [
62 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
63 '<(PRODUCT_DIR)/<(mac_product_name).app/',
64 ],
65 },
66 }],
67 ['OS=="mac" and asan==1 and fastbuild==0', {
68 'variables': {
69 'files': [
70 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/',
71 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/',
72 ],
73 },
74 }],
75 ['OS=="win"', {
76 'variables': {
77 'files': [
78 '<(PRODUCT_DIR)/chrome_elf.dll',
79 '<(PRODUCT_DIR)/crashpad_handler.exe',
80 ],
81 },
82 }],
83 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
84 'variables': {
85 'files': [
86 '<(PRODUCT_DIR)/sync_integration_tests.exe.pdb',
87 ],
88 },
89 }],
90 ['OS=="win" and target_arch=="ia32"', {
91 'variables': {
92 'files': [
93 '<(PRODUCT_DIR)/wow_helper.exe',
94 ],
95 },
96 }],
97 ['OS=="win" and kasko==1', {
98 'variables': {
99 'files': [
100 '<(PRODUCT_DIR)/kasko.dll',
101 ],
102 },
103 }],
104 ],
105 'includes': [
106 '../base/base.isolate',
107 '../gin/v8.isolate',
108 '../ui/gl/gl.isolate',
109 ],
110 }
OLDNEW
« no previous file with comments | « chrome/setup_unittests.isolate ('k') | chrome/tab_capture_end2end_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698