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 10 matching lines...) Expand all Loading... |
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'], | 25 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
26 # TODO: remove this helper when we have loops in GYP | 26 # TODO: remove this helper when we have loops in GYP |
27 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], | 27 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], |
28 'conditions': [ | 28 'conditions': [ |
29 ['OS!="ios"', { | 29 ['OS!="ios"', { |
30 'chromium_browser_dependencies': [ | 30 'chromium_browser_dependencies': [ |
31 '../printing/printing.gyp:printing', | |
32 '../ppapi/ppapi_internal.gyp:ppapi_host', | 31 '../ppapi/ppapi_internal.gyp:ppapi_host', |
33 ], | 32 ], |
34 'chromium_child_dependencies': [ | 33 'chromium_child_dependencies': [ |
35 'debugger', | 34 'debugger', |
36 'plugin', | 35 'plugin', |
37 'renderer', | 36 'renderer', |
38 'utility', | 37 'utility', |
39 '../content/content.gyp:content_gpu', | 38 '../content/content.gyp:content_gpu', |
40 '../content/content.gyp:content_ppapi_plugin', | 39 '../content/content.gyp:content_ppapi_plugin', |
41 '../content/content.gyp:content_worker', | 40 '../content/content.gyp:content_worker', |
42 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', | 41 '../third_party/WebKit/Source/devtools/devtools.gyp:devtools_frontend_
resources', |
43 ], | 42 ], |
44 }], | 43 }], |
| 44 ['enable_printing!=0', { |
| 45 'chromium_browser_dependencies': [ |
| 46 '../printing/printing.gyp:printing', |
| 47 ], |
| 48 }], |
45 ['OS=="win"', { | 49 ['OS=="win"', { |
46 'platform_locale_settings_grd': | 50 'platform_locale_settings_grd': |
47 'app/resources/locale_settings_win.grd', | 51 'app/resources/locale_settings_win.grd', |
48 },], | 52 },], |
49 ['enable_printing==1', { | 53 ['enable_printing==1', { |
50 'chromium_browser_dependencies': [ | 54 'chromium_browser_dependencies': [ |
51 'service', | 55 'service', |
52 ], | 56 ], |
53 }], | 57 }], |
54 ['OS=="linux"', { | 58 ['OS=="linux"', { |
(...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 'sources': [ | 1133 'sources': [ |
1130 'service/cloud_print/print_system_cups.cc', | 1134 'service/cloud_print/print_system_cups.cc', |
1131 ], | 1135 ], |
1132 }], | 1136 }], |
1133 ], | 1137 ], |
1134 }, | 1138 }, |
1135 ], | 1139 ], |
1136 }], | 1140 }], |
1137 ], # 'conditions' | 1141 ], # 'conditions' |
1138 } | 1142 } |
OLD | NEW |