| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 { 'targets': [ | 758 { 'targets': [ |
| 759 { | 759 { |
| 760 # For historical reasons, chrome/chrome.sln has been the entry point | 760 # For historical reasons, chrome/chrome.sln has been the entry point |
| 761 # for new Chrome developers. To assist development, include several | 761 # for new Chrome developers. To assist development, include several |
| 762 # core unittests that are otherwise only accessible side-by-side with | 762 # core unittests that are otherwise only accessible side-by-side with |
| 763 # chrome via all/all.sln. | 763 # chrome via all/all.sln. |
| 764 'target_name': 'test_targets', | 764 'target_name': 'test_targets', |
| 765 'type': 'none', | 765 'type': 'none', |
| 766 'dependencies': [ | 766 'dependencies': [ |
| 767 '../base/base.gyp:base_unittests', | 767 '../base/base.gyp:base_unittests', |
| 768 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests', | |
| 769 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests', | |
| 770 '../content/content_shell_and_tests.gyp:content_browsertests', | 768 '../content/content_shell_and_tests.gyp:content_browsertests', |
| 771 '../content/content_shell_and_tests.gyp:content_shell', | 769 '../content/content_shell_and_tests.gyp:content_shell', |
| 772 '../content/content_shell_and_tests.gyp:content_unittests', | 770 '../content/content_shell_and_tests.gyp:content_unittests', |
| 773 '../net/net.gyp:net_unittests', | 771 '../net/net.gyp:net_unittests', |
| 774 '../ui/ui_unittests.gyp:ui_unittests', | 772 '../ui/ui_unittests.gyp:ui_unittests', |
| 775 ], | 773 ], |
| 776 'conditions': [ | |
| 777 ['use_aura==1 or target_arch=="x64"', { | |
| 778 'dependencies!': [ | |
| 779 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests', | |
| 780 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests', | |
| 781 ], | |
| 782 }], | |
| 783 ], | |
| 784 }, | 774 }, |
| 785 { | 775 { |
| 786 'target_name': 'chrome_version_resources', | 776 'target_name': 'chrome_version_resources', |
| 787 'type': 'none', | 777 'type': 'none', |
| 788 'conditions': [ | 778 'conditions': [ |
| 789 ['branding == "Chrome"', { | 779 ['branding == "Chrome"', { |
| 790 'variables': { | 780 'variables': { |
| 791 'branding_path': 'app/theme/google_chrome/BRANDING', | 781 'branding_path': 'app/theme/google_chrome/BRANDING', |
| 792 }, | 782 }, |
| 793 }, { # else branding!="Chrome" | 783 }, { # else branding!="Chrome" |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1112 'sources': [ | 1102 'sources': [ |
| 1113 'service/cloud_print/print_system_dummy.cc', | 1103 'service/cloud_print/print_system_dummy.cc', |
| 1114 ], | 1104 ], |
| 1115 }], | 1105 }], |
| 1116 ], | 1106 ], |
| 1117 }, | 1107 }, |
| 1118 ], | 1108 ], |
| 1119 }], | 1109 }], |
| 1120 ], # 'conditions' | 1110 ], # 'conditions' |
| 1121 } | 1111 } |
| OLD | NEW |