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', | 21 '../content/content.gyp:content_app_child', |
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', | |
35 '../printing/printing.gyp:printing', | 33 '../printing/printing.gyp:printing', |
| 34 '../ppapi/ppapi_internal.gyp:ppapi_host', |
36 ], | 35 ], |
37 'chromium_child_dependencies': [ | 36 'chromium_child_dependencies': [ |
38 'debugger', | 37 'debugger', |
39 'plugin', | 38 'plugin', |
40 'renderer', | 39 'renderer', |
41 'utility', | 40 'utility', |
42 '../content/content.gyp:content_gpu', | 41 '../content/content.gyp:content_gpu', |
43 '../content/content.gyp:content_ppapi_plugin', | 42 '../content/content.gyp:content_ppapi_plugin', |
44 '../content/content.gyp:content_worker', | 43 '../content/content.gyp:content_worker', |
45 '../printing/printing.gyp:printing', | |
46 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', | 44 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', |
47 ], | 45 ], |
48 }], | 46 }], |
49 ['OS=="win"', { | 47 ['OS=="win"', { |
50 'nacl_defines': [ | 48 'nacl_defines': [ |
51 'NACL_WINDOWS=1', | 49 'NACL_WINDOWS=1', |
52 'NACL_LINUX=0', | 50 'NACL_LINUX=0', |
53 'NACL_OSX=0', | 51 'NACL_OSX=0', |
54 ], | 52 ], |
55 'platform_locale_settings_grd': | 53 'platform_locale_settings_grd': |
(...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1231 ], # 'targets' | 1229 ], # 'targets' |
1232 'includes': [ | 1230 'includes': [ |
1233 'chrome_android.gypi', | 1231 'chrome_android.gypi', |
1234 ]}, # 'includes' | 1232 ]}, # 'includes' |
1235 ], # OS=="android" | 1233 ], # OS=="android" |
1236 ['configuration_policy==1 and OS!="android"', { | 1234 ['configuration_policy==1 and OS!="android"', { |
1237 'includes': [ 'policy.gypi', ], | 1235 'includes': [ 'policy.gypi', ], |
1238 }], | 1236 }], |
1239 ], # 'conditions' | 1237 ], # 'conditions' |
1240 } | 1238 } |
OLD | NEW |