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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 '../chrome/chrome.gyp:url_fetch_test', | 210 '../chrome/chrome.gyp:url_fetch_test', |
211 ], | 211 ], |
212 }, # target_name: chromium_builder_perf | 212 }, # target_name: chromium_builder_perf |
213 { | 213 { |
214 'target_name': 'chromium_gpu_builder', | 214 'target_name': 'chromium_gpu_builder', |
215 'type': 'none', | 215 'type': 'none', |
216 'dependencies': [ | 216 'dependencies': [ |
217 '../chrome/chrome.gyp:gpu_tests', | 217 '../chrome/chrome.gyp:gpu_tests', |
218 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderTree'
, | 218 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderTree'
, |
219 ], | 219 ], |
220 } | 220 }, # target_name: chromium_gpu_builder |
| 221 { |
| 222 'target_name': 'chromium_builder_qa', |
| 223 'type': 'none', |
| 224 'dependencies': [ |
| 225 '../chrome/chrome.gyp:pyautolib', |
| 226 '../chrome/chrome.gyp:chromedriver', |
| 227 ], |
| 228 }, # target_name: chromium_builder_qa |
221 ], | 229 ], |
222 'conditions': [ | 230 'conditions': [ |
223 ['OS=="mac"', { | 231 ['OS=="mac"', { |
224 'targets': [ | 232 'targets': [ |
225 { | 233 { |
226 # Target to build everything plus the dmg. We don't put the dmg | 234 # Target to build everything plus the dmg. We don't put the dmg |
227 # in the All target because developers really don't need it. | 235 # in the All target because developers really don't need it. |
228 'target_name': 'all_and_dmg', | 236 'target_name': 'all_and_dmg', |
229 'type': 'none', | 237 'type': 'none', |
230 'dependencies': [ | 238 'dependencies': [ |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 ], # targets | 488 ], # targets |
481 }], # "chromeos==1" | 489 }], # "chromeos==1" |
482 ], # conditions | 490 ], # conditions |
483 } | 491 } |
484 | 492 |
485 # Local Variables: | 493 # Local Variables: |
486 # tab-width:2 | 494 # tab-width:2 |
487 # indent-tabs-mode:nil | 495 # indent-tabs-mode:nil |
488 # End: | 496 # End: |
489 # vim: set expandtab tabstop=2 shiftwidth=2: | 497 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |