| OLD | NEW |
| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 'conditions': [ | 324 'conditions': [ |
| 325 # If you change this condition, make sure you also change it | 325 # If you change this condition, make sure you also change it |
| 326 # in chrome_tests.gypi | 326 # in chrome_tests.gypi |
| 327 ['enable_automation==1 and (OS=="mac" or OS=="win" or (os_posix==1 a
nd target_arch==python_arch))', { | 327 ['enable_automation==1 and (OS=="mac" or OS=="win" or (os_posix==1 a
nd target_arch==python_arch))', { |
| 328 'dependencies': [ | 328 'dependencies': [ |
| 329 '../chrome/chrome.gyp:pyautolib', | 329 '../chrome/chrome.gyp:pyautolib', |
| 330 ], | 330 ], |
| 331 }], | 331 }], |
| 332 ], | 332 ], |
| 333 }, # target_name: chromium_builder_qa | 333 }, # target_name: chromium_builder_qa |
| 334 { |
| 335 'target_name': 'chromium_builder_perf_av', |
| 336 'type': 'none', |
| 337 'dependencies': [ |
| 338 'chromium_builder_qa', # needed for perf pyauto tests |
| 339 '../webkit/webkit.gyp:pull_in_DumpRenderTree', # to run layout test
s |
| 340 ], |
| 341 }, # target_name: chromium_builder_perf_av |
| 334 ], # targets | 342 ], # targets |
| 335 }], | 343 }], |
| 336 ['OS=="mac"', { | 344 ['OS=="mac"', { |
| 337 'targets': [ | 345 'targets': [ |
| 338 { | 346 { |
| 339 # Target to build everything plus the dmg. We don't put the dmg | 347 # Target to build everything plus the dmg. We don't put the dmg |
| 340 # in the All target because developers really don't need it. | 348 # in the All target because developers really don't need it. |
| 341 'target_name': 'all_and_dmg', | 349 'target_name': 'all_and_dmg', |
| 342 'type': 'none', | 350 'type': 'none', |
| 343 'dependencies': [ | 351 'dependencies': [ |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 '../base/base.gyp:base_unittests_run', | 687 '../base/base.gyp:base_unittests_run', |
| 680 '../chrome/chrome.gyp:browser_tests_run', | 688 '../chrome/chrome.gyp:browser_tests_run', |
| 681 '../chrome/chrome.gyp:unit_tests_run', | 689 '../chrome/chrome.gyp:unit_tests_run', |
| 682 '../net/net.gyp:net_unittests_run', | 690 '../net/net.gyp:net_unittests_run', |
| 683 ], | 691 ], |
| 684 }, # target_name: chromium_swarm_tests | 692 }, # target_name: chromium_swarm_tests |
| 685 ], | 693 ], |
| 686 }], | 694 }], |
| 687 ], # conditions | 695 ], # conditions |
| 688 } | 696 } |
| OLD | NEW |