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 'conditions': [ | 5 'conditions': [ |
6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
10 'type': 'none', | 10 'type': 'none', |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 'product_name': 'chrome', | 100 'product_name': 'chrome', |
101 'dependencies': [ | 101 'dependencies': [ |
102 # On Windows, link the dependencies (libraries) that make | 102 # On Windows, link the dependencies (libraries) that make |
103 # up actual Chromium functionality into this .dll. | 103 # up actual Chromium functionality into this .dll. |
104 'chrome_dll_pdb_workaround', | 104 'chrome_dll_pdb_workaround', |
105 'chrome_version_resources', | 105 'chrome_version_resources', |
106 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', | 106 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', |
107 '../crypto/crypto.gyp:crypto', | 107 '../crypto/crypto.gyp:crypto', |
108 '../printing/printing.gyp:printing', | 108 '../printing/printing.gyp:printing', |
109 '../net/net.gyp:net_resources', | 109 '../net/net.gyp:net_resources', |
| 110 '../third_party/cld/cld.gyp:cld', |
110 '../ui/views/views.gyp:views', | 111 '../ui/views/views.gyp:views', |
111 '../webkit/webkit_resources.gyp:webkit_resources', | 112 '../webkit/webkit_resources.gyp:webkit_resources', |
112 ], | 113 ], |
113 'sources': [ | 114 'sources': [ |
114 'app/chrome_command_ids.h', | 115 'app/chrome_command_ids.h', |
115 'app/chrome_dll.rc', | 116 'app/chrome_dll.rc', |
116 'app/chrome_dll_resource.h', | 117 'app/chrome_dll_resource.h', |
117 'app/chrome_main.cc', | 118 'app/chrome_main.cc', |
118 'app/chrome_main_delegate.cc', | 119 'app/chrome_main_delegate.cc', |
119 'app/chrome_main_delegate.h', | 120 'app/chrome_main_delegate.h', |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 }, { | 226 }, { |
226 'dependencies': [ | 227 'dependencies': [ |
227 '<@(chromium_child_dependencies)', | 228 '<@(chromium_child_dependencies)', |
228 '../content/content.gyp:content_app_both', | 229 '../content/content.gyp:content_app_both', |
229 '../content/content.gyp:content_worker', | 230 '../content/content.gyp:content_worker', |
230 ], | 231 ], |
231 'dependencies!': [ | 232 'dependencies!': [ |
232 '../content/content.gyp:content_app_browser', | 233 '../content/content.gyp:content_app_browser', |
233 ], | 234 ], |
234 }], | 235 }], |
235 ['cld_version==0 or cld_version==1', { | |
236 'dependencies': [ | |
237 '../third_party/cld/cld.gyp:cld', | |
238 ], | |
239 }], | |
240 ['cld_version==0 or cld_version==2', { | |
241 'dependencies': [ | |
242 '../third_party/cld_2/cld_2.gyp:cld_2', | |
243 ], | |
244 }], | |
245 ['OS=="mac" and component!="shared_library"', { | 236 ['OS=="mac" and component!="shared_library"', { |
246 'includes': [ 'chrome_dll_bundle.gypi' ], | 237 'includes': [ 'chrome_dll_bundle.gypi' ], |
247 }], | 238 }], |
248 ['OS=="mac" and component=="shared_library"', { | 239 ['OS=="mac" and component=="shared_library"', { |
249 'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-ObjC' ], }, | 240 'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-ObjC' ], }, |
250 }], | 241 }], |
251 ['OS=="mac"', { | 242 ['OS=="mac"', { |
252 'xcode_settings': { | 243 'xcode_settings': { |
253 # Define the order of symbols within the framework. This | 244 # Define the order of symbols within the framework. This |
254 # sets -order_file. | 245 # sets -order_file. |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', | 356 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', |
366 'app/chrome_main.cc', | 357 'app/chrome_main.cc', |
367 'app/chrome_main_delegate.cc', | 358 'app/chrome_main_delegate.cc', |
368 'app/chrome_main_delegate.h', | 359 'app/chrome_main_delegate.h', |
369 ], | 360 ], |
370 }, # target chrome_child_dll | 361 }, # target chrome_child_dll |
371 ], | 362 ], |
372 }], | 363 }], |
373 ], | 364 ], |
374 } | 365 } |
OLD | NEW |