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

Side by Side Diff: build/all.gyp

Issue 10828061: Remove target chromium_swarm_tests when test_isolate_mode == noop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « base/base.gyp ('k') | chrome/chrome_tests.gypi » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'conditions': [ 171 'conditions': [
172 ['OS=="win" and fastbuild==0', { 172 ['OS=="win" and fastbuild==0', {
173 'dependencies': [ 173 'dependencies': [
174 '../chrome/installer/mini_installer_syzygy.gyp:*', 174 '../chrome/installer/mini_installer_syzygy.gyp:*',
175 ], 175 ],
176 }, 176 },
177 ], 177 ],
178 ], 178 ],
179 }, # target_name: All_syzygy 179 }, # target_name: All_syzygy
180 { 180 {
181 'target_name': 'chromium_swarm_tests',
182 'type': 'none',
183 'dependencies': [
184 # Add new dependencies to the !ios section just below, not here (see
185 # the comment there).
186 ],
187 'conditions': [
188 ['OS!="ios"', {
189 'dependencies': [
190 # TODO(ios): This is temporary; currently almost nothing builds with
191 # OS=ios. Move dependencies back to the main dependencies section
192 # above as gyp files come online.
193 '../base/base.gyp:base_unittests_run',
194 '../chrome/chrome.gyp:browser_tests_run',
195 '../chrome/chrome.gyp:unit_tests_run',
196 '../net/net.gyp:net_unittests_run',
197 ],
198 }],
199 ],
200 }, # target_name: chromium_swarm_tests
201 {
202 'target_name': 'chromium_builder_tests', 181 'target_name': 'chromium_builder_tests',
203 'type': 'none', 182 'type': 'none',
204 'dependencies': [ 183 'dependencies': [
205 '../base/base.gyp:base_unittests', 184 '../base/base.gyp:base_unittests',
206 '../sql/sql.gyp:sql_unittests', 185 '../sql/sql.gyp:sql_unittests',
207 # Add new dependencies to the !ios section just below, not here (see 186 # Add new dependencies to the !ios section just below, not here (see
208 # the comment there). 187 # the comment there).
209 ], 188 ],
210 'conditions': [ 189 'conditions': [
211 ['OS!="ios"', { 190 ['OS!="ios"', {
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 }], 667 }],
689 ['chromeos==1', { 668 ['chromeos==1', {
690 'dependencies': [ 669 'dependencies': [
691 '../chromeos/chromeos.gyp:chromeos_unittests', 670 '../chromeos/chromeos.gyp:chromeos_unittests',
692 ], 671 ],
693 }], 672 }],
694 ], 673 ],
695 }, 674 },
696 ], # targets 675 ], # targets
697 }], # "use_aura==1" 676 }], # "use_aura==1"
677 ['test_isolation_mode != "noop"', {
678 'targets': [
679 {
680 'target_name': 'chromium_swarm_tests',
681 'type': 'none',
682 'dependencies': [
683 '../base/base.gyp:base_unittests_run',
684 '../chrome/chrome.gyp:browser_tests_run',
685 '../chrome/chrome.gyp:unit_tests_run',
686 '../net/net.gyp:net_unittests_run',
687 ],
688 }, # target_name: chromium_swarm_tests
689 ],
690 }],
698 ], # conditions 691 ], # conditions
699 } 692 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698