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

Side by Side Diff: build/all.gyp

Issue 4092001: Add a new project used by the chromium builders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 2 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 '../remoting/remoting.gyp:*', 133 '../remoting/remoting.gyp:*',
134 ], 134 ],
135 }], 135 }],
136 ['use_openssl!=1', { 136 ['use_openssl!=1', {
137 'dependencies': [ 137 'dependencies': [
138 '../net/third_party/nss/ssl.gyp:*', 138 '../net/third_party/nss/ssl.gyp:*',
139 ], 139 ],
140 }], 140 }],
141 ], 141 ],
142 }, 142 },
143 {
144 'target_name': 'chromium_builder_tests',
145 'type': 'none',
146 'dependencies': [
147 '../app/app.gyp:app_unittests',
148 '../base/base.gyp:base_unittests',
149 '../chrome/chrome.gyp:browser_tests',
150 '../chrome/chrome.gyp:interactive_ui_tests',
151 '../chrome/chrome.gyp:nacl_ui_tests',
152 '../chrome/chrome.gyp:nacl_sandbox_tests',
153 '../chrome/chrome.gyp:safe_browsing_tests',
154 '../chrome/chrome.gyp:sync_integration_tests',
155 '../chrome/chrome.gyp:sync_unit_tests',
156 '../chrome/chrome.gyp:ui_tests',
157 '../chrome/chrome.gyp:unit_tests',
158 '../gfx/gfx.gyp:gfx_unittests',
159 '../gpu/gpu.gyp:gpu_unittests',
160 '../ipc/ipc.gyp:ipc_tests',
161 '../jingle/jingle.gyp:notifier_unit_tests',
162 '../media/media.gyp:media_unittests',
163 '../net/net.gyp:net_unittests',
164 '../printing/printing.gyp:printing_unittests',
165 '../remoting/remoting.gyp:remoting_unittests',
166 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_unittests',
167 'temp_gyp/googleurl.gyp:googleurl_unittests',
168 ],
169 'conditions': [
170 ['OS=="win"', {
171 'dependencies': [
172 '../chrome/chrome.gyp:installer_util_unittests',
173 '../chrome/chrome.gyp:mini_installer_test',
174 # mini_installer_tests depends on mini_installer. This should be
175 # defined in installer.gyp.
176 '../chrome/installer/mini_installer.gyp:mini_installer',
177 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests',
178 '../chrome_frame/chrome_frame.gyp:chrome_frame_perftests',
179 '../chrome_frame/chrome_frame.gyp:chrome_frame_reliability_tests',
180 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests',
181 '../chrome_frame/chrome_frame.gyp:chrome_frame_unittests',
182 '../chrome_frame/chrome_frame.gyp:npchrome_frame',
183 '../courgette/courgette.gyp:courgette_unittests',
184 '../sandbox/sandbox.gyp:sbox_integration_tests',
185 '../sandbox/sandbox.gyp:sbox_unittests',
186 '../sandbox/sandbox.gyp:sbox_validation_tests',
187 '../webkit/support/webkit_support.gyp:npapi_layout_test_plugin',
188 # TODO(nsylvain) ui_tests.exe depends on test_shell_common.
189 # This should:
190 # 1) not be the case. OR.
191 # 2) be expressed in the ui tests dependencies.
192 '../webkit/webkit.gyp:test_shell_common',
193 ],
194 }],
195 ],
196 }
143 ], 197 ],
144 'conditions': [ 198 'conditions': [
145 ['OS=="mac"', { 199 ['OS=="mac"', {
146 'targets': [ 200 'targets': [
147 { 201 {
148 # Target to build everything plus the dmg. We don't put the dmg 202 # Target to build everything plus the dmg. We don't put the dmg
149 # in the All target because developers really don't need it. 203 # in the All target because developers really don't need it.
150 'target_name': 'all_and_dmg', 204 'target_name': 'all_and_dmg',
151 'type': 'none', 205 'type': 'none',
152 'dependencies': [ 206 'dependencies': [
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 ], # targets 420 ], # targets
367 }], # "chromeos==1" 421 }], # "chromeos==1"
368 ], # conditions 422 ], # conditions
369 } 423 }
370 424
371 # Local Variables: 425 # Local Variables:
372 # tab-width:2 426 # tab-width:2
373 # indent-tabs-mode:nil 427 # indent-tabs-mode:nil
374 # End: 428 # End:
375 # vim: set expandtab tabstop=2 shiftwidth=2: 429 # vim: set expandtab tabstop=2 shiftwidth=2:
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