| 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 '../content/content.gyp:content_app', | 16 '../content/content.gyp:content_app', |
| 17 '../sync/sync.gyp:sync', | 17 '../sync/sync.gyp:sync', |
| 18 ], | 18 ], |
| 19 'chromium_child_dependencies': [ | 19 'chromium_child_dependencies': [ |
| 20 'common', | 20 'common', |
| 21 '../content/content.gyp:content_app_child', | 21 '../content/content.gyp:content_app', |
| 22 '../sync/sync.gyp:sync', | 22 '../sync/sync.gyp:sync', |
| 23 ], | 23 ], |
| 24 'allocator_target': '../base/allocator/allocator.gyp:allocator', | 24 'allocator_target': '../base/allocator/allocator.gyp:allocator', |
| 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 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 27 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
| 28 # TODO: remove this helper when we have loops in GYP | 28 # TODO: remove this helper when we have loops in GYP |
| 29 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 29 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], |
| 30 'conditions': [ | 30 'conditions': [ |
| 31 ['OS!="ios"', { | 31 ['OS!="ios"', { |
| 32 'chromium_browser_dependencies': [ | 32 'chromium_browser_dependencies': [ |
| 33 'debugger', |
| 34 '../content/content.gyp:content_ppapi_plugin', |
| 33 '../printing/printing.gyp:printing', | 35 '../printing/printing.gyp:printing', |
| 34 '../ppapi/ppapi_internal.gyp:ppapi_host', | |
| 35 ], | 36 ], |
| 36 'chromium_child_dependencies': [ | 37 'chromium_child_dependencies': [ |
| 37 'debugger', | 38 'debugger', |
| 38 'plugin', | 39 'plugin', |
| 39 'renderer', | 40 'renderer', |
| 40 'utility', | 41 'utility', |
| 41 '../content/content.gyp:content_gpu', | 42 '../content/content.gyp:content_gpu', |
| 42 '../content/content.gyp:content_ppapi_plugin', | 43 '../content/content.gyp:content_ppapi_plugin', |
| 43 '../content/content.gyp:content_worker', | 44 '../content/content.gyp:content_worker', |
| 45 '../printing/printing.gyp:printing', |
| 44 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', | 46 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', |
| 45 ], | 47 ], |
| 46 }], | 48 }], |
| 47 ['OS=="win"', { | 49 ['OS=="win"', { |
| 48 'nacl_defines': [ | 50 'nacl_defines': [ |
| 49 'NACL_WINDOWS=1', | 51 'NACL_WINDOWS=1', |
| 50 'NACL_LINUX=0', | 52 'NACL_LINUX=0', |
| 51 'NACL_OSX=0', | 53 'NACL_OSX=0', |
| 52 ], | 54 ], |
| 53 'platform_locale_settings_grd': | 55 'platform_locale_settings_grd': |
| (...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1230 ], # 'targets' | 1232 ], # 'targets' |
| 1231 'includes': [ | 1233 'includes': [ |
| 1232 'chrome_android.gypi', | 1234 'chrome_android.gypi', |
| 1233 ]}, # 'includes' | 1235 ]}, # 'includes' |
| 1234 ], # OS=="android" | 1236 ], # OS=="android" |
| 1235 ['configuration_policy==1 and OS!="android"', { | 1237 ['configuration_policy==1 and OS!="android"', { |
| 1236 'includes': [ 'policy.gypi', ], | 1238 'includes': [ 'policy.gypi', ], |
| 1237 }], | 1239 }], |
| 1238 ], # 'conditions' | 1240 ], # 'conditions' |
| 1239 } | 1241 } |
| OLD | NEW |