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

Side by Side Diff: build/all.gyp

Issue 252006: Add new projects to help speed up the buildbots. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 '../chrome/chrome.gyp:ui_tests', 127 '../chrome/chrome.gyp:ui_tests',
128 '../chrome/chrome.gyp:unit_tests', 128 '../chrome/chrome.gyp:unit_tests',
129 '../chrome/chrome.gyp:url_fetch_test', 129 '../chrome/chrome.gyp:url_fetch_test',
130 '../ipc/ipc.gyp:ipc_tests', 130 '../ipc/ipc.gyp:ipc_tests',
131 '../media/media.gyp:media_unittests', 131 '../media/media.gyp:media_unittests',
132 '../printing/printing.gyp:printing_unittests', 132 '../printing/printing.gyp:printing_unittests',
133 ], 133 ],
134 }, 134 },
135 ], # targets 135 ], # targets
136 }], # OS="mac" 136 }], # OS="mac"
137 ['OS=="win"', {
138 'targets': [
139 # These targets are here so the build bots can use them to build
140 # subsets of a full tree for faster cycle times.
141 {
142 'target_name': 'chromium_builder',
143 'type': 'none',
144 'dependencies': [
145 '../app/app.gyp:app_unittests',
146 '../chrome/chrome.gyp:browser_tests',
147 '../chrome/chrome.gyp:interactive_ui_tests',
148 '../chrome/chrome.gyp:memory_test',
149 '../chrome/chrome.gyp:page_cycler_tests',
150 '../chrome/chrome.gyp:plugin_tests',
151 '../chrome/chrome.gyp:startup_tests',
152 '../chrome/chrome.gyp:tab_switching_test',
153 '../chrome/chrome.gyp:ui_tests',
154 '../chrome/chrome.gyp:unit_tests',
155 '../chrome/chrome.gyp:url_fetch_test',
156 '../chrome/installer/installer.gyp:installer_util_unittests',
157 '../chrome/installer/installer.gyp:mini_installer_test',
158 '../courgette/courgette.gyp:courgette_unittests',
159 '../ipc/ipc.gyp:ipc_tests',
160 '../media/media.gyp:media_unittests',
161 '../printing/printing.gyp:printing_unittests',
162 ],
163 },
164 {
165 'target_name': 'purify_builder_ui',
166 'type': 'none',
167 'dependencies': [
168 '../chrome/chrome.gyp:ui_tests',
169 ],
170 },
171 {
172 'target_name': 'purify_builder_unit',
173 'type': 'none',
174 'dependencies': [
175 '../chrome/chrome.gyp:unit_tests',
176 ],
177 },
178 {
179 'target_name': 'purify_builder_webkit',
180 'type': 'none',
181 'dependencies': [
182 '../webkit/tools/test_shell/test_shell.gyp:test_shell_tests',
183 '../webkit/tools/test_shell/test_shell.gyp:test_shell',
184 ],
185 },
186 ], # targets
187 }], # OS="win"
137 ], # conditions 188 ], # conditions
138 } 189 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698