| 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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 # for new Chrome developers. To assist development, include several | 886 # for new Chrome developers. To assist development, include several |
| 887 # core unittests that are otherwise only accessible side-by-side with | 887 # core unittests that are otherwise only accessible side-by-side with |
| 888 # chrome via all/all.sln. | 888 # chrome via all/all.sln. |
| 889 'target_name': 'test_targets', | 889 'target_name': 'test_targets', |
| 890 'type': 'none', | 890 'type': 'none', |
| 891 'dependencies': [ | 891 'dependencies': [ |
| 892 '../base/base.gyp:base_unittests', | 892 '../base/base.gyp:base_unittests', |
| 893 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests', | 893 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests', |
| 894 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests', | 894 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests', |
| 895 '../content/content.gyp:content_browsertests', | 895 '../content/content.gyp:content_browsertests', |
| 896 '../content/content.gyp:content_shell', | |
| 897 '../content/content.gyp:content_unittests', | 896 '../content/content.gyp:content_unittests', |
| 897 '../content/content_shell.gyp:content_shell', |
| 898 '../net/net.gyp:net_unittests', | 898 '../net/net.gyp:net_unittests', |
| 899 '../ui/ui.gyp:ui_unittests', | 899 '../ui/ui.gyp:ui_unittests', |
| 900 ], | 900 ], |
| 901 'conditions': [ | 901 'conditions': [ |
| 902 ['use_aura==1 or target_arch=="x64"', { | 902 ['use_aura==1 or target_arch=="x64"', { |
| 903 'dependencies!': [ | 903 'dependencies!': [ |
| 904 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests', | 904 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests', |
| 905 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests', | 905 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests', |
| 906 ], | 906 ], |
| 907 }], | 907 }], |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1156 ], # 'targets' | 1156 ], # 'targets' |
| 1157 'includes': [ | 1157 'includes': [ |
| 1158 'chrome_android.gypi', | 1158 'chrome_android.gypi', |
| 1159 ]}, # 'includes' | 1159 ]}, # 'includes' |
| 1160 ], # OS=="android" | 1160 ], # OS=="android" |
| 1161 ['configuration_policy==1 and OS!="android"', { | 1161 ['configuration_policy==1 and OS!="android"', { |
| 1162 'includes': [ 'policy.gypi', ], | 1162 'includes': [ 'policy.gypi', ], |
| 1163 }], | 1163 }], |
| 1164 ], # 'conditions' | 1164 ], # 'conditions' |
| 1165 } | 1165 } |
| OLD | NEW |