| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 # Note on Win64 targets: targets that end with win64 be used | 95 # Note on Win64 targets: targets that end with win64 be used |
| 96 # on 64-bit Windows only. Targets that end with nacl_win64 should be used | 96 # on 64-bit Windows only. Targets that end with nacl_win64 should be used |
| 97 # by Native Client only. | 97 # by Native Client only. |
| 98 # NOTE: Most new includes should go in the OS!="ios" condition below. | 98 # NOTE: Most new includes should go in the OS!="ios" condition below. |
| 99 '../build/chrome_settings.gypi', | 99 '../build/chrome_settings.gypi', |
| 100 '../build/util/version.gypi', | 100 '../build/util/version.gypi', |
| 101 '../build/win_precompile.gypi', | 101 '../build/win_precompile.gypi', |
| 102 'chrome_browser.gypi', | 102 'chrome_browser.gypi', |
| 103 'chrome_browser_ui.gypi', | 103 'chrome_browser_ui.gypi', |
| 104 'chrome_common.gypi', | 104 'chrome_common.gypi', |
| 105 'chrome_installer_static.gypi', |
| 105 'chrome_installer_util.gypi', | 106 'chrome_installer_util.gypi', |
| 106 'chrome_features.gypi', | 107 'chrome_features.gypi', |
| 107 ], | 108 ], |
| 108 'conditions': [ | 109 'conditions': [ |
| 109 ['OS!="ios"', { | 110 ['OS!="ios"', { |
| 110 'includes': [ | 111 'includes': [ |
| 111 '../apps/apps.gypi', | 112 '../apps/apps.gypi', |
| 112 'chrome_child.gypi', | 113 'chrome_child.gypi', |
| 113 'chrome_debugger.gypi', | 114 'chrome_debugger.gypi', |
| 114 'chrome_dll.gypi', | 115 'chrome_dll.gypi', |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 # expired. crbug.com/577698 | 816 # expired. crbug.com/577698 |
| 816 '../components/components.gyp:startup_metric_utils_common', | 817 '../components/components.gyp:startup_metric_utils_common', |
| 817 ], | 818 ], |
| 818 }], | 819 }], |
| 819 ], | 820 ], |
| 820 }, | 821 }, |
| 821 ], | 822 ], |
| 822 }], | 823 }], |
| 823 ], # 'conditions' | 824 ], # 'conditions' |
| 824 } | 825 } |
| OLD | NEW |