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