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

Side by Side Diff: content/content_browsertests.isolate

Issue 59623015: GTTF: Flip test launcher defaults (developer mode is now default) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years 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/sync_integration_tests.isolate ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 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=="android"', { 6 ['OS=="android"', {
7 'variables': { 7 'variables': {
8 'isolate_dependency_tracked': [ 8 'isolate_dependency_tracked': [
9 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', 9 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak',
10 ], 10 ],
11 'isolate_dependency_untracked': [ 11 'isolate_dependency_untracked': [
12 '../third_party/webgl_conformance/', 12 '../third_party/webgl_conformance/',
13 ], 13 ],
14 }, 14 },
15 }], 15 }],
16 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { 16 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
17 'variables': { 17 'variables': {
18 'isolate_dependency_untracked': [ 18 'isolate_dependency_untracked': [
19 '../net/data/', 19 '../net/data/',
20 'test/data/', 20 'test/data/',
21 ], 21 ],
22 }, 22 },
23 }], 23 }],
24 ['OS=="linux"', { 24 ['OS=="linux"', {
25 'variables': { 25 'variables': {
26 'command': [ 26 'command': [
27 '../testing/xvfb.py', 27 '../testing/xvfb.py',
28 '<(PRODUCT_DIR)', 28 '<(PRODUCT_DIR)',
29 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', 29 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)',
30 '--test-launcher-bot-mode',
30 ], 31 ],
31 'isolate_dependency_tracked': [ 32 'isolate_dependency_tracked': [
32 '../testing/xvfb.py', 33 '../testing/xvfb.py',
33 '<(PRODUCT_DIR)/content_shell.pak', 34 '<(PRODUCT_DIR)/content_shell.pak',
34 '<(PRODUCT_DIR)/fonts.conf', 35 '<(PRODUCT_DIR)/fonts.conf',
35 '<(PRODUCT_DIR)/libclearkeycdm.so', 36 '<(PRODUCT_DIR)/libclearkeycdm.so',
36 '<(PRODUCT_DIR)/libclearkeycdmadapter.so', 37 '<(PRODUCT_DIR)/libclearkeycdmadapter.so',
37 '<(PRODUCT_DIR)/libffmpegsumo.so', 38 '<(PRODUCT_DIR)/libffmpegsumo.so',
38 '<(PRODUCT_DIR)/plugins/libTestNetscapePlugin.so', 39 '<(PRODUCT_DIR)/plugins/libTestNetscapePlugin.so',
39 '<(PRODUCT_DIR)/plugins/libnpapi_test_plugin.so', 40 '<(PRODUCT_DIR)/plugins/libnpapi_test_plugin.so',
(...skipping 29 matching lines...) Expand all
69 'isolate_dependency_untracked': [ 70 'isolate_dependency_untracked': [
70 '<(PRODUCT_DIR)/Content Shell.app/', 71 '<(PRODUCT_DIR)/Content Shell.app/',
71 ], 72 ],
72 }, 73 },
73 }], 74 }],
74 ['OS=="mac" or OS=="win"', { 75 ['OS=="mac" or OS=="win"', {
75 'variables': { 76 'variables': {
76 'command': [ 77 'command': [
77 '../testing/test_env.py', 78 '../testing/test_env.py',
78 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', 79 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)',
80 '--test-launcher-bot-mode',
79 ], 81 ],
80 }, 82 },
81 }], 83 }],
82 ['OS=="win"', { 84 ['OS=="win"', {
83 'variables': { 85 'variables': {
84 'isolate_dependency_tracked': [ 86 'isolate_dependency_tracked': [
85 '<(PRODUCT_DIR)/ffmpegsumo.dll', 87 '<(PRODUCT_DIR)/ffmpegsumo.dll',
86 '<(PRODUCT_DIR)/chrome_100_percent.pak', 88 '<(PRODUCT_DIR)/chrome_100_percent.pak',
87 '<(PRODUCT_DIR)/clearkeycdm.dll', 89 '<(PRODUCT_DIR)/clearkeycdm.dll',
88 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', 90 '<(PRODUCT_DIR)/clearkeycdmadapter.dll',
89 '<(PRODUCT_DIR)/content_shell.pak', 91 '<(PRODUCT_DIR)/content_shell.pak',
90 '<(PRODUCT_DIR)/plugins/npTestNetscapePlugIn.dll', 92 '<(PRODUCT_DIR)/plugins/npTestNetscapePlugIn.dll',
91 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll', 93 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.dll',
92 ], 94 ],
93 'isolate_dependency_untracked': [ 95 'isolate_dependency_untracked': [
94 # The two directories below are only needed for 96 # The two directories below are only needed for
95 # WorkerXHRHttpLayoutTest.Tests which are currently disabled. 97 # WorkerXHRHttpLayoutTest.Tests which are currently disabled.
96 #'../third_party/cygwin/', 98 #'../third_party/cygwin/',
97 #'../third_party/perl/perl/', 99 #'../third_party/perl/perl/',
98 '../third_party/python_26/', 100 '../third_party/python_26/',
99 ], 101 ],
100 }, 102 },
101 }], 103 }],
102 ], 104 ],
103 } 105 }
OLDNEW
« no previous file with comments | « chrome/sync_integration_tests.isolate ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698