| 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 |
| 11 # Linux or Mac, and into chrome.dll on Windows. | 11 # Linux or Mac, and into chrome.dll on Windows. |
| 12 # NOTE: Most new includes should go in the OS!="ios" condition below. | 12 # NOTE: Most new includes should go in the OS!="ios" condition below. |
| 13 'chromium_browser_dependencies': [ | 13 'chromium_browser_dependencies': [ |
| 14 'common', | 14 'common', |
| 15 'browser', | 15 'browser', |
| 16 '../sync/sync.gyp:sync', | 16 '../sync/sync.gyp:sync', |
| 17 ], | 17 ], |
| 18 'chromium_child_dependencies': [ | 18 'chromium_child_dependencies': [ |
| 19 'common', | 19 'common', |
| 20 '../sync/sync.gyp:sync', | 20 '../sync/sync.gyp:sync', |
| 21 ], | 21 ], |
| 22 'allocator_target': '../base/allocator/allocator.gyp:allocator', | 22 'allocator_target': '../base/allocator/allocator.gyp:allocator', |
| 23 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 23 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 24 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 24 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 25 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | |
| 26 'conditions': [ | 25 'conditions': [ |
| 27 ['OS!="ios"', { | 26 ['OS!="ios"', { |
| 28 'chromium_browser_dependencies': [ | 27 'chromium_browser_dependencies': [ |
| 29 '../ppapi/ppapi_internal.gyp:ppapi_host', | 28 '../ppapi/ppapi_internal.gyp:ppapi_host', |
| 30 ], | 29 ], |
| 31 'chromium_child_dependencies': [ | 30 'chromium_child_dependencies': [ |
| 32 'debugger', | 31 'debugger', |
| 33 'plugin', | 32 'plugin', |
| 34 'renderer', | 33 'renderer', |
| 35 'utility', | 34 'utility', |
| (...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 'sources': [ | 1114 'sources': [ |
| 1116 'service/cloud_print/print_system_dummy.cc', | 1115 'service/cloud_print/print_system_dummy.cc', |
| 1117 ], | 1116 ], |
| 1118 }], | 1117 }], |
| 1119 ], | 1118 ], |
| 1120 }, | 1119 }, |
| 1121 ], | 1120 ], |
| 1122 }], | 1121 }], |
| 1123 ], # 'conditions' | 1122 ], # 'conditions' |
| 1124 } | 1123 } |
| OLD | NEW |