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 'plugin', | 36 'plugin', |
36 'renderer', | 37 'renderer', |
37 'utility', | 38 'utility', |
38 '../content/content.gyp:content_gpu', | 39 '../content/content.gyp:content_gpu', |
39 '../content/content.gyp:content_ppapi_plugin', | 40 '../content/content.gyp:content_ppapi_plugin', |
40 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', | 41 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', |
41 ], | 42 ], |
42 'conditions': [ | 43 'conditions': [ |
43 [ 'cld_version==0 or cld_version==2', { | 44 [ 'cld_version==0 or cld_version==2', { |
44 'chromium_child_dependencies': [ | 45 'chromium_child_dependencies': [ |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', |
115 'chrome_exe.gypi', | 116 'chrome_exe.gypi', |
| 117 'chrome_gpu.gypi', |
116 'chrome_installer.gypi', | 118 'chrome_installer.gypi', |
117 'chrome_plugin.gypi', | 119 'chrome_plugin.gypi', |
118 'chrome_renderer.gypi', | 120 'chrome_renderer.gypi', |
119 'chrome_tests.gypi', | 121 'chrome_tests.gypi', |
120 'chrome_tests_unit.gypi', | 122 'chrome_tests_unit.gypi', |
121 'chrome_utility.gypi', | 123 'chrome_utility.gypi', |
122 'policy_templates.gypi', | 124 'policy_templates.gypi', |
123 ], | 125 ], |
124 'targets': [ | 126 'targets': [ |
125 { | 127 { |
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 # expired. crbug.com/577698 | 811 # expired. crbug.com/577698 |
810 '../components/components.gyp:startup_metric_utils_common', | 812 '../components/components.gyp:startup_metric_utils_common', |
811 ], | 813 ], |
812 }], | 814 }], |
813 ], | 815 ], |
814 }, | 816 }, |
815 ], | 817 ], |
816 }], | 818 }], |
817 ], # 'conditions' | 819 ], # 'conditions' |
818 } | 820 } |
OLD | NEW |