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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 ], | 477 ], |
478 }, # target_name: chromium_builder_chromedriver | 478 }, # target_name: chromium_builder_chromedriver |
479 { | 479 { |
480 'target_name': 'chromium_builder_asan', | 480 'target_name': 'chromium_builder_asan', |
481 'type': 'none', | 481 'type': 'none', |
482 'dependencies': [ | 482 'dependencies': [ |
483 '../chrome/chrome.gyp:chrome', | 483 '../chrome/chrome.gyp:chrome', |
484 | 484 |
485 # We refer to content_shell directly rather than all_webkit | 485 # We refer to content_shell directly rather than all_webkit |
486 # because we don't want the _unittests binaries. | 486 # because we don't want the _unittests binaries. |
487 '../content/content.gyp:content_browsertests', | |
488 '../content/content.gyp:content_shell', | 487 '../content/content.gyp:content_shell', |
489 | 488 ], |
490 '../net/net.gyp:dns_fuzz_stub', | 489 'conditions': [ |
491 ], | 490 ['OS!="win"', { |
492 }, | 491 'dependencies': [ |
| 492 '../content/content.gyp:content_browsertests', |
| 493 '../net/net.gyp:dns_fuzz_stub', |
| 494 ], |
| 495 }], |
| 496 ['OS=="win" and fastbuild==0 and target_arch=="ia32"', { |
| 497 'dependencies': [ |
| 498 '../chrome/chrome_syzygy.gyp:chrome_dll_syzygy', |
| 499 '../content/content.gyp:content_shell_syzyasan', |
| 500 ], |
| 501 'conditions': [ |
| 502 ['chrome_multiple_dll==1', { |
| 503 'dependencies': [ |
| 504 '../chrome/chrome_syzygy.gyp:chrome_child_dll_syzygy', |
| 505 ], |
| 506 }], |
| 507 ], |
| 508 }], |
| 509 ], |
| 510 }, |
493 ], # targets | 511 ], # targets |
494 }], | 512 }], |
495 ['OS=="mac"', { | 513 ['OS=="mac"', { |
496 'targets': [ | 514 'targets': [ |
497 { | 515 { |
498 # Target to build everything plus the dmg. We don't put the dmg | 516 # Target to build everything plus the dmg. We don't put the dmg |
499 # in the All target because developers really don't need it. | 517 # in the All target because developers really don't need it. |
500 'target_name': 'all_and_dmg', | 518 'target_name': 'all_and_dmg', |
501 'type': 'none', | 519 'type': 'none', |
502 'dependencies': [ | 520 'dependencies': [ |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
915 '../chrome/chrome.gyp:interactive_ui_tests_run', | 933 '../chrome/chrome.gyp:interactive_ui_tests_run', |
916 '../chrome/chrome.gyp:sync_integration_tests_run', | 934 '../chrome/chrome.gyp:sync_integration_tests_run', |
917 '../chrome/chrome.gyp:unit_tests_run', | 935 '../chrome/chrome.gyp:unit_tests_run', |
918 '../net/net.gyp:net_unittests_run', | 936 '../net/net.gyp:net_unittests_run', |
919 ], | 937 ], |
920 }, # target_name: chromium_swarm_tests | 938 }, # target_name: chromium_swarm_tests |
921 ], | 939 ], |
922 }], | 940 }], |
923 ], # conditions | 941 ], # conditions |
924 } | 942 } |
OLD | NEW |