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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 ['branding=="Chrome"', { | 652 ['branding=="Chrome"', { |
653 'targets': [ | 653 'targets': [ |
654 { | 654 { |
655 'target_name': 'chrome_official_builder', | 655 'target_name': 'chrome_official_builder', |
656 'type': 'none', | 656 'type': 'none', |
657 'dependencies': [ | 657 'dependencies': [ |
658 '../chrome/chrome.gyp:chromedriver', | 658 '../chrome/chrome.gyp:chromedriver', |
659 '../chrome/chrome.gyp:crash_service', | 659 '../chrome/chrome.gyp:crash_service', |
660 '../chrome/chrome.gyp:performance_ui_tests', | 660 '../chrome/chrome.gyp:performance_ui_tests', |
661 '../chrome/chrome.gyp:policy_templates', | 661 '../chrome/chrome.gyp:policy_templates', |
662 '../chrome/chrome.gyp:pyautolib', | |
663 '../chrome/chrome.gyp:reliability_tests', | 662 '../chrome/chrome.gyp:reliability_tests', |
664 '../chrome/chrome.gyp:automated_ui_tests', | 663 '../chrome/chrome.gyp:automated_ui_tests', |
665 '../chrome/installer/mini_installer.gyp:mini_installer', | 664 '../chrome/installer/mini_installer.gyp:mini_installer', |
666 '../chrome_frame/chrome_frame.gyp:npchrome_frame', | 665 '../chrome_frame/chrome_frame.gyp:npchrome_frame', |
667 '../courgette/courgette.gyp:courgette', | 666 '../courgette/courgette.gyp:courgette', |
668 '../cloud_print/cloud_print.gyp:cloud_print', | 667 '../cloud_print/cloud_print.gyp:cloud_print', |
669 '../remoting/remoting.gyp:remoting_webapp', | 668 '../remoting/remoting.gyp:remoting_webapp', |
670 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter
', | 669 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter
', |
671 ], | 670 ], |
672 'conditions': [ | 671 'conditions': [ |
| 672 # If you change this condition, make sure you also change it |
| 673 # in chrome_tests.gypi |
| 674 ['enable_automation==1 and (OS=="mac" or ((OS=="win" or os_posix
==1) and target_arch==python_arch))', { |
| 675 'dependencies': [ |
| 676 '../chrome/chrome.gyp:pyautolib', |
| 677 ], |
| 678 }], |
673 ['internal_pdf', { | 679 ['internal_pdf', { |
674 'dependencies': [ | 680 'dependencies': [ |
675 '../pdf/pdf.gyp:pdf', | 681 '../pdf/pdf.gyp:pdf', |
676 ], | 682 ], |
677 }], # internal_pdf | 683 }], # internal_pdf |
678 ['target_arch=="ia32"', { | 684 ['target_arch=="ia32"', { |
679 'dependencies': [ | 685 'dependencies': [ |
680 '../chrome/chrome.gyp:crash_service_win64', | 686 '../chrome/chrome.gyp:crash_service_win64', |
681 '../courgette/courgette.gyp:courgette64', | 687 '../courgette/courgette.gyp:courgette64', |
682 ], | 688 ], |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
783 '../chrome/chrome.gyp:browser_tests_run', | 789 '../chrome/chrome.gyp:browser_tests_run', |
784 '../chrome/chrome.gyp:sync_integration_tests_run', | 790 '../chrome/chrome.gyp:sync_integration_tests_run', |
785 '../chrome/chrome.gyp:unit_tests_run', | 791 '../chrome/chrome.gyp:unit_tests_run', |
786 '../net/net.gyp:net_unittests_run', | 792 '../net/net.gyp:net_unittests_run', |
787 ], | 793 ], |
788 }, # target_name: chromium_swarm_tests | 794 }, # target_name: chromium_swarm_tests |
789 ], | 795 ], |
790 }], | 796 }], |
791 ], # conditions | 797 ], # conditions |
792 } | 798 } |
OLD | NEW |