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 'allocator_target': '../base/allocator/allocator.gyp:allocator', | 25 'allocator_target': '../base/allocator/allocator.gyp:allocator', |
26 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 26 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
27 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 27 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
28 'conditions': [ | 28 'conditions': [ |
29 ['OS!="ios"', { | 29 ['OS!="ios"', { |
30 'chromium_browser_dependencies': [ | 30 'chromium_browser_dependencies': [ |
31 'debugger', | 31 'debugger', |
32 '../ppapi/ppapi_internal.gyp:ppapi_host', | 32 '../ppapi/ppapi_internal.gyp:ppapi_host', |
33 ], | 33 ], |
34 'chromium_child_dependencies': [ | 34 'chromium_child_dependencies': [ |
| 35 'child', |
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'chrome_browser_ui.gypi', | 116 'chrome_browser_ui.gypi', |
116 'chrome_common.gypi', | 117 'chrome_common.gypi', |
117 'chrome_installer_util.gypi', | 118 'chrome_installer_util.gypi', |
118 '../components/nacl/nacl_defines.gypi', | 119 '../components/nacl/nacl_defines.gypi', |
119 ], | 120 ], |
120 'conditions': [ | 121 'conditions': [ |
121 ['OS!="ios"', { | 122 ['OS!="ios"', { |
122 'includes': [ | 123 'includes': [ |
123 '../apps/apps.gypi', | 124 '../apps/apps.gypi', |
124 'app_installer/app_installer.gypi', | 125 'app_installer/app_installer.gypi', |
| 126 'chrome_child.gypi', |
125 'chrome_debugger.gypi', | 127 'chrome_debugger.gypi', |
126 'chrome_dll.gypi', | 128 'chrome_dll.gypi', |
127 'chrome_exe.gypi', | 129 'chrome_exe.gypi', |
128 'chrome_installer.gypi', | 130 'chrome_installer.gypi', |
129 'chrome_plugin.gypi', | 131 'chrome_plugin.gypi', |
130 'chrome_renderer.gypi', | 132 'chrome_renderer.gypi', |
131 'chrome_tests.gypi', | 133 'chrome_tests.gypi', |
132 'chrome_tests_unit.gypi', | 134 'chrome_tests_unit.gypi', |
133 'chrome_utility.gypi', | 135 'chrome_utility.gypi', |
134 'policy_templates.gypi', | 136 'policy_templates.gypi', |
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 'service/service_utility_process_host.cc', | 778 'service/service_utility_process_host.cc', |
777 'service/service_utility_process_host.h', | 779 'service/service_utility_process_host.h', |
778 ], | 780 ], |
779 }], | 781 }], |
780 ], | 782 ], |
781 }, | 783 }, |
782 ], | 784 ], |
783 }], | 785 }], |
784 ], # 'conditions' | 786 ], # 'conditions' |
785 } | 787 } |
OLD | NEW |