| 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 14 matching lines...) Expand all Loading... |
| 25 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 25 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 26 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 26 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 27 'conditions': [ | 27 'conditions': [ |
| 28 ['OS!="ios"', { | 28 ['OS!="ios"', { |
| 29 'chromium_browser_dependencies': [ | 29 'chromium_browser_dependencies': [ |
| 30 'debugger', | 30 'debugger', |
| 31 '../ppapi/ppapi_internal.gyp:ppapi_host', | 31 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 32 ], | 32 ], |
| 33 'chromium_child_dependencies': [ | 33 'chromium_child_dependencies': [ |
| 34 'child', | 34 'child', |
| 35 'plugin', | |
| 36 'renderer', | 35 'renderer', |
| 37 'utility', | 36 'utility', |
| 38 '../content/content.gyp:content_gpu', | 37 '../content/content.gyp:content_gpu', |
| 39 '../content/content.gyp:content_ppapi_plugin', | 38 '../content/content.gyp:content_ppapi_plugin', |
| 40 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', | 39 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', |
| 41 ], | 40 ], |
| 42 'conditions': [ | 41 'conditions': [ |
| 43 [ 'cld_version==0 or cld_version==2', { | 42 [ 'cld_version==0 or cld_version==2', { |
| 44 'chromium_child_dependencies': [ | 43 'chromium_child_dependencies': [ |
| 45 # Use whatever CLD2 data access mode that the application | 44 # Use whatever CLD2 data access mode that the application |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 ], | 106 ], |
| 108 'conditions': [ | 107 'conditions': [ |
| 109 ['OS!="ios"', { | 108 ['OS!="ios"', { |
| 110 'includes': [ | 109 'includes': [ |
| 111 '../apps/apps.gypi', | 110 '../apps/apps.gypi', |
| 112 'chrome_child.gypi', | 111 'chrome_child.gypi', |
| 113 'chrome_debugger.gypi', | 112 'chrome_debugger.gypi', |
| 114 'chrome_dll.gypi', | 113 'chrome_dll.gypi', |
| 115 'chrome_exe.gypi', | 114 'chrome_exe.gypi', |
| 116 'chrome_installer.gypi', | 115 'chrome_installer.gypi', |
| 117 'chrome_plugin.gypi', | |
| 118 'chrome_renderer.gypi', | 116 'chrome_renderer.gypi', |
| 119 'chrome_tests.gypi', | 117 'chrome_tests.gypi', |
| 120 'chrome_tests_unit.gypi', | 118 'chrome_tests_unit.gypi', |
| 121 'chrome_utility.gypi', | 119 'chrome_utility.gypi', |
| 122 'policy_templates.gypi', | 120 'policy_templates.gypi', |
| 123 ], | 121 ], |
| 124 'targets': [ | 122 'targets': [ |
| 125 { | 123 { |
| 126 # GN version: //chrome/browser/extensions/default_extensions | 124 # GN version: //chrome/browser/extensions/default_extensions |
| 127 'target_name': 'default_extensions', | 125 'target_name': 'default_extensions', |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 # expired. crbug.com/577698 | 808 # expired. crbug.com/577698 |
| 811 '../components/components.gyp:startup_metric_utils_common', | 809 '../components/components.gyp:startup_metric_utils_common', |
| 812 ], | 810 ], |
| 813 }], | 811 }], |
| 814 ], | 812 ], |
| 815 }, | 813 }, |
| 816 ], | 814 ], |
| 817 }], | 815 }], |
| 818 ], # 'conditions' | 816 ], # 'conditions' |
| 819 } | 817 } |
| OLD | NEW |