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 'gpu', |
35 'renderer', | 36 'renderer', |
36 'utility', | 37 'utility', |
37 '../content/content.gyp:content_gpu', | 38 '../content/content.gyp:content_gpu', |
38 '../content/content.gyp:content_ppapi_plugin', | 39 '../content/content.gyp:content_ppapi_plugin', |
39 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', | 40 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', |
40 ], | 41 ], |
41 'conditions': [ | 42 'conditions': [ |
42 [ 'cld_version==0 or cld_version==2', { | 43 [ 'cld_version==0 or cld_version==2', { |
43 'chromium_child_dependencies': [ | 44 'chromium_child_dependencies': [ |
44 # Use whatever CLD2 data access mode that the application | 45 # Use whatever CLD2 data access mode that the application |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 'chrome_features.gypi', | 106 'chrome_features.gypi', |
106 ], | 107 ], |
107 'conditions': [ | 108 'conditions': [ |
108 ['OS!="ios"', { | 109 ['OS!="ios"', { |
109 'includes': [ | 110 'includes': [ |
110 '../apps/apps.gypi', | 111 '../apps/apps.gypi', |
111 'chrome_child.gypi', | 112 'chrome_child.gypi', |
112 'chrome_debugger.gypi', | 113 'chrome_debugger.gypi', |
113 'chrome_dll.gypi', | 114 'chrome_dll.gypi', |
114 'chrome_exe.gypi', | 115 'chrome_exe.gypi', |
| 116 'chrome_gpu.gypi', |
115 'chrome_installer.gypi', | 117 'chrome_installer.gypi', |
116 'chrome_renderer.gypi', | 118 'chrome_renderer.gypi', |
117 'chrome_tests.gypi', | 119 'chrome_tests.gypi', |
118 'chrome_tests_unit.gypi', | 120 'chrome_tests_unit.gypi', |
119 'chrome_utility.gypi', | 121 'chrome_utility.gypi', |
120 'policy_templates.gypi', | 122 'policy_templates.gypi', |
121 ], | 123 ], |
122 'targets': [ | 124 'targets': [ |
123 { | 125 { |
124 # GN version: //chrome/browser/extensions/default_extensions | 126 # GN version: //chrome/browser/extensions/default_extensions |
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 # expired. crbug.com/577698 | 814 # expired. crbug.com/577698 |
813 '../components/components.gyp:startup_metric_utils_common', | 815 '../components/components.gyp:startup_metric_utils_common', |
814 ], | 816 ], |
815 }], | 817 }], |
816 ], | 818 ], |
817 }, | 819 }, |
818 ], | 820 ], |
819 }], | 821 }], |
820 ], # 'conditions' | 822 ], # 'conditions' |
821 } | 823 } |
OLD | NEW |