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

Side by Side Diff: chrome/interactive_ui_tests.isolate

Issue 12086059: Add interactive_ui_tests_run. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: traced on linux, mac and windows Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | 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 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 ['OS=="linux"', {
7 'variables': {
8 'command': [
9 '../testing/xvfb.py',
10 '<(PRODUCT_DIR)',
11 '../tools/swarm_client/run_test_cases.py',
12 '-j1',
13 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
14 ],
15 'isolate_dependency_tracked': [
16 '../testing/xvfb.py',
17 '<(PRODUCT_DIR)/chrome.pak',
18 '<(PRODUCT_DIR)/libffmpegsumo.so',
19 '<(PRODUCT_DIR)/locales/fr.pak',
20 '<(PRODUCT_DIR)/pyproto/google/__init__.py',
21 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
22 ],
23 },
24 }],
25 ['OS=="linux" or OS=="mac" or OS=="win"', {
26 'variables': {
27 'isolate_dependency_tracked': [
28 '../net/data/ssl/certificates/ok_cert.pem',
29 '../net/data/ssl/certificates/root_ca_cert.crt',
30 '../net/tools/testserver/asn1.py',
31 '../net/tools/testserver/echo_message.py',
32 '../net/tools/testserver/minica.py',
33 '../net/tools/testserver/testserver.py',
34 '../net/tools/testserver/testserver_base.py',
35 '../testing/test_env.py',
36 '../third_party/pyftpdlib/src/pyftpdlib/ftpserver.py',
37 '../tools/swarm_client/run_isolated.py',
38 '../tools/swarm_client/run_test_cases.py',
39 '../tools/swarm_client/third_party/upload.py',
40 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
41 '<(PRODUCT_DIR)/resources.pak',
42 ],
43 'isolate_dependency_untracked': [
44 '../third_party/pywebsocket/src/mod_pywebsocket/',
45 '../third_party/tlslite/tlslite/',
46 'test/data/',
M-A Ruel 2013/04/16 18:07:57 This is way too much data for what is needed but u
47 ],
48 'isolate_dependency_touched': [
49 '../third_party/pyftpdlib/src/pyftpdlib/__init__.py',
50 '../tools/swarm_client/third_party/__init__.py',
51 ],
52 },
53 }],
54 ['OS=="linux" or OS=="win"', {
55 'variables': {
56 'isolate_dependency_tracked': [
57 '<(PRODUCT_DIR)/chrome_100_percent.pak',
58 ],
59 },
60 }],
61 ['OS=="mac"', {
62 'variables': {
63 'isolate_dependency_tracked': [
64 '<(PRODUCT_DIR)/ffmpegsumo.so',
65 ],
66 'isolate_dependency_untracked': [
67 '<(PRODUCT_DIR)/Chromium Framework.framework/',
68 '<(PRODUCT_DIR)/Chromium.app/',
69 ],
70 },
71 }],
72 ['OS=="mac" or OS=="win"', {
73 'variables': {
74 'command': [
75 '../testing/test_env.py',
76 '../tools/swarm_client/run_test_cases.py',
77 '-j1',
78 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
79 ],
80 },
81 }],
82 ['OS=="win"', {
83 'variables': {
84 'isolate_dependency_tracked': [
85 '<(PRODUCT_DIR)/d3dcompiler_46.dll',
86 '<(PRODUCT_DIR)/ffmpegsumo.dll',
87 '<(PRODUCT_DIR)/icudt.dll',
88 '<(PRODUCT_DIR)/libEGL.dll',
89 '<(PRODUCT_DIR)/libGLESv2.dll',
90 '<(PRODUCT_DIR)/locales/en-US.pak',
91 '<(PRODUCT_DIR)/ppGoogleNaClPluginChrome.dll',
92 ],
93 'isolate_dependency_untracked': [
94 '../third_party/python_26/',
M-A Ruel 2013/04/16 18:07:57 We'll have to endure this until a CL is done to us
csharp 2013/04/16 18:21:14 :( Is there a bug to track this?
95 ],
96 },
97 }],
98 ],
99 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698