OLD | NEW |
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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 '../views/views.gyp:views_unittests', | 190 '../views/views.gyp:views_unittests', |
191 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:copy_TestNetscapeP
lugIn', | 191 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:copy_TestNetscapeP
lugIn', |
192 # TODO(nsylvain) ui_tests.exe depends on test_shell_common. | 192 # TODO(nsylvain) ui_tests.exe depends on test_shell_common. |
193 # This should: | 193 # This should: |
194 # 1) not be the case. OR. | 194 # 1) not be the case. OR. |
195 # 2) be expressed in the ui tests dependencies. | 195 # 2) be expressed in the ui tests dependencies. |
196 '../webkit/webkit.gyp:test_shell_common', | 196 '../webkit/webkit.gyp:test_shell_common', |
197 ], | 197 ], |
198 }], | 198 }], |
199 ], | 199 ], |
200 } | 200 }, |
| 201 { |
| 202 'target_name': 'chromium_gpu_builder', |
| 203 'type': 'none', |
| 204 'dependencies': [ |
| 205 '../chrome/chrome.gyp:gpu_tests', |
| 206 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:DumpRenderTree', |
| 207 ], |
| 208 } |
201 ], | 209 ], |
202 'conditions': [ | 210 'conditions': [ |
203 ['OS=="mac"', { | 211 ['OS=="mac"', { |
204 'targets': [ | 212 'targets': [ |
205 { | 213 { |
206 # Target to build everything plus the dmg. We don't put the dmg | 214 # Target to build everything plus the dmg. We don't put the dmg |
207 # in the All target because developers really don't need it. | 215 # in the All target because developers really don't need it. |
208 'target_name': 'all_and_dmg', | 216 'target_name': 'all_and_dmg', |
209 'type': 'none', | 217 'type': 'none', |
210 'dependencies': [ | 218 'dependencies': [ |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 ], # targets | 459 ], # targets |
452 }], # "chromeos==1" | 460 }], # "chromeos==1" |
453 ], # conditions | 461 ], # conditions |
454 } | 462 } |
455 | 463 |
456 # Local Variables: | 464 # Local Variables: |
457 # tab-width:2 | 465 # tab-width:2 |
458 # indent-tabs-mode:nil | 466 # indent-tabs-mode:nil |
459 # End: | 467 # End: |
460 # vim: set expandtab tabstop=2 shiftwidth=2: | 468 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |