Upstream version 6.35.121.0
[platform/framework/web/crosswalk.git] / src / chrome / chrome_dll.gypi
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
3 # found in the LICENSE file.
4 {
5   'conditions': [
6     ['OS=="mac" or OS=="win"', {
7       'targets': [
8         {
9           'target_name': 'chrome_dll',
10           'type': 'none',
11           'dependencies': [
12             'chrome_main_dll',
13           ],
14           'conditions': [
15             ['OS=="mac" and component=="shared_library"', {
16               'type': 'shared_library',
17               'includes': [ 'chrome_dll_bundle.gypi' ],
18               'xcode_settings': {
19                 'OTHER_LDFLAGS': [
20                   '-Wl,-reexport_library,<(PRODUCT_DIR)/libchrome_main_dll.dylib',
21                 ],
22               },
23             }],  # OS=="mac"
24             ['chrome_multiple_dll==1', {
25               'dependencies': [
26                 'chrome_child_dll',
27               ],
28             }],
29             ['incremental_chrome_dll==1', {
30               # Linking to a different directory and then hardlinking back
31               # to OutDir is a workaround to avoid having the .ilk for
32               # chrome.exe and chrome.dll conflicting. See crbug.com/92528
33               # for more information. Done on the dll instead of the exe so
34               # that people launching from VS don't need to modify
35               # $(TargetPath) for the exe.
36               'actions': [
37                 {
38                   'action_name': 'hardlink_to_output',
39                   'inputs': [
40                     '$(OutDir)\\initial\\chrome.dll',
41                   ],
42                   'outputs': [
43                     '$(OutDir)\\chrome.dll',
44                   ],
45                   'action': ['tools\\build\\win\\hardlink_failsafe.bat',
46                              '$(OutDir)\\initial\\chrome.dll',
47                              '$(OutDir)\\chrome.dll'],
48                 },
49               ],
50               'conditions': [
51                 # Only hardlink pdb if we're generating debug info.
52                 ['fastbuild==0 or win_z7!=0', {
53                   'actions': [
54                     {
55                       'action_name': 'hardlink_pdb_to_output',
56                       'inputs': [
57                         # Not the pdb, since gyp doesn't know about it
58                         '$(OutDir)\\initial\\chrome.dll',
59                       ],
60                       'outputs': [
61                         '$(OutDir)\\chrome.dll.pdb',
62                       ],
63                       'action': ['tools\\build\\win\\hardlink_failsafe.bat',
64                                  '$(OutDir)\\initial\\chrome.dll.pdb',
65                                  '$(OutDir)\\chrome.dll.pdb'],
66                     }
67                   ]
68                 }]
69               ],
70             }],
71           ]
72         },
73         {
74           'target_name': 'chrome_main_dll',
75           'type': 'shared_library',
76           'variables': {
77             'enable_wexit_time_destructors': 1,
78           },
79           'dependencies': [
80             '<@(chromium_browser_dependencies)',
81             '../components/components.gyp:policy',
82             '../content/content.gyp:content_app_browser',
83           ],
84           'conditions': [
85             ['OS=="win"', {
86               'dependencies': [
87                 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
88               ],
89             }],
90             ['use_aura==1', {
91               'dependencies': [
92                 '../ui/compositor/compositor.gyp:compositor',
93               ],
94             }],
95             ['OS=="win" and target_arch=="ia32"', {
96               # Add a dependency to custom import library for user32 delay
97               # imports only in x86 builds.
98               'dependencies': [
99                 'chrome_user32_delay_imports',
100               ],
101             },],
102             ['OS=="win"', {
103               'product_name': 'chrome',
104               'dependencies': [
105                 # On Windows, link the dependencies (libraries) that make
106                 # up actual Chromium functionality into this .dll.
107                 'chrome_dll_pdb_workaround',
108                 'chrome_version_resources',
109                 '../chrome/chrome_resources.gyp:chrome_unscaled_resources',
110                 '../crypto/crypto.gyp:crypto',
111                 '../net/net.gyp:net_resources',
112                 '../ui/views/views.gyp:views',
113                 '../webkit/webkit_resources.gyp:webkit_resources',
114               ],
115               'sources': [
116                 'app/chrome_command_ids.h',
117                 'app/chrome_dll.rc',
118                 'app/chrome_dll_resource.h',
119                 'app/chrome_main.cc',
120                 'app/chrome_main_delegate.cc',
121                 'app/chrome_main_delegate.h',
122                 'app/delay_load_hook_win.cc',
123                 'app/delay_load_hook_win.h',
124
125                 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc',
126                 '../base/win/dllmain.cc',
127
128                 # Cursors.
129                 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_unscaled_resources.rc',
130               ],
131               'include_dirs': [
132                 '<(DEPTH)/third_party/wtl/include',
133               ],
134               'configurations': {
135                 'Debug_Base': {
136                   'msvs_settings': {
137                     'VCLinkerTool': {
138                       'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
139                     },
140                   },
141                 },
142               },
143               'msvs_settings': {
144                 'VCLinkerTool': {
145                   'BaseAddress': '0x01c30000',
146                   'ImportLibrary': '$(OutDir)\\lib\\chrome_dll.lib',
147                   # Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency).
148                   'SubSystem': '2',
149                   'conditions': [
150                     ['incremental_chrome_dll==1', {
151                       'OutputFile': '$(OutDir)\\initial\\chrome.dll',
152                       'UseLibraryDependencyInputs': "true",
153                     }],
154                     ['target_arch=="ia32"', {
155                       # Link against the XP-constrained user32 import library
156                       # instead of the platform-SDK provided one to avoid
157                       # inadvertently taking dependencies on post-XP user32
158                       # exports.
159                       'AdditionalDependencies!': [
160                         'user32.lib',
161                       ],
162                       'IgnoreDefaultLibraryNames': [
163                         'user32.lib',
164                       ],
165                       # Remove user32 delay load for chrome.dll.
166                       'DelayLoadDLLs!': [
167                         'user32.dll',
168                       ],
169                       'AdditionalDependencies': [
170                         'user32.winxp.lib',
171                       ],
172                       'DelayLoadDLLs': [
173                         'user32-delay.dll',
174                       ],
175                       'AdditionalLibraryDirectories': [
176                         '<(DEPTH)/build/win/importlibs/x86',
177                       ],
178                       'ForceSymbolReferences': [
179                         # Force the inclusion of the delay load hook in this
180                         # binary.
181                         '_ChromeDelayLoadHook@8',
182                       ],
183                     }],
184                   ],
185                   'DelayLoadDLLs': [
186                     'comdlg32.dll',
187                     'crypt32.dll',
188                     'cryptui.dll',
189                     'dhcpcsvc.dll',
190                     'imagehlp.dll',
191                     'imm32.dll',
192                     'iphlpapi.dll',
193                     'setupapi.dll',
194                     'urlmon.dll',
195                     'winhttp.dll',
196                     'wininet.dll',
197                     'winspool.drv',
198                     'ws2_32.dll',
199                     'wsock32.dll',
200                   ],
201                 },
202                 'VCManifestTool': {
203                   'AdditionalManifestFiles': [
204                     '$(ProjectDir)\\app\\chrome.dll.manifest',
205                   ],
206                 },
207               },
208               'conditions': [
209                 ['win_use_allocator_shim==1', {
210                   'dependencies': [
211                     '<(allocator_target)',
212                   ],
213                 }],
214                 ['enable_printing!=0', {
215                   'dependencies': [
216                     '../printing/printing.gyp:printing',
217                   ],
218                 }],
219                 ['chrome_pgo_phase==1', {
220                   'msvs_settings': {
221                     'VCLinkerTool': {
222                       'LinkTimeCodeGeneration': '2',
223                     },
224                   },
225                 }],
226                 ['chrome_pgo_phase==2', {
227                   'msvs_settings': {
228                     'VCLinkerTool': {
229                       'LinkTimeCodeGeneration': '3',
230                     },
231                   },
232                 }],
233               ]
234             }],
235             ['chrome_multiple_dll==1', {
236               'defines': [
237                 'CHROME_MULTIPLE_DLL_BROWSER',
238               ],
239             }, {
240               'dependencies': [
241                 '<@(chromium_child_dependencies)',
242                 '../content/content.gyp:content_app_both',
243                 '../content/content.gyp:content_worker',
244               ],
245               'dependencies!': [
246                 '../content/content.gyp:content_app_browser',
247               ],
248             }],
249             ['cld_version==0 or cld_version==1', {
250               'dependencies': [
251                 '../third_party/cld/cld.gyp:cld',
252               ],
253             }],
254             ['cld_version==0 or cld_version==2', {
255               'dependencies': [
256                 '../third_party/cld_2/cld_2.gyp:cld_2',
257               ],
258             }],
259             ['OS=="mac" and component!="shared_library"', {
260               'includes': [ 'chrome_dll_bundle.gypi' ],
261             }],
262             ['OS=="mac" and component=="shared_library"', {
263               'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-ObjC' ], },
264             }],
265             ['OS=="mac"', {
266               'xcode_settings': {
267                 # Define the order of symbols within the framework.  This
268                 # sets -order_file.
269                 'ORDER_FILE': 'app/framework.order',
270               },
271               'sources': [
272                 'app/chrome_command_ids.h',
273                 'app/chrome_dll_resource.h',
274                 'app/chrome_main.cc',
275                 'app/chrome_main_delegate.cc',
276                 'app/chrome_main_delegate.h',
277                 'app/chrome_main_mac.mm',
278                 'app/chrome_main_mac.h',
279               ],
280               'include_dirs': [
281                 '<(grit_out_dir)',
282               ],
283               'postbuilds': [
284                 {
285                   # This step causes an error to be raised if the .order file
286                   # does not account for all global text symbols.  It
287                   # validates the completeness of the .order file.
288                   'postbuild_name': 'Verify global text symbol order',
289                   'variables': {
290                     'verify_order_path': 'tools/build/mac/verify_order',
291                   },
292                   'action': [
293                     '<(verify_order_path)',
294                     '_ChromeMain',
295                     '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}',
296                   ],
297                 },
298               ],
299               'conditions': [
300                 ['mac_breakpad_compiled_in==1', {
301                   'dependencies': [
302                     '../breakpad/breakpad.gyp:breakpad',
303                     '../components/components.gyp:breakpad_component',
304                     '../components/components.gyp:policy',
305                   ],
306                   'sources': [
307                     'app/chrome_breakpad_client.cc',
308                     'app/chrome_breakpad_client.h',
309                     'app/chrome_breakpad_client_mac.mm',
310                   ],
311                 }, {  # else: mac_breakpad_compiled_in!=1
312                   # No Breakpad, put in the stubs.
313                   'dependencies': [
314                     '../components/components.gyp:breakpad_stubs',
315                   ],
316                 }],  # mac_breakpad_compiled_in
317                 ['internal_pdf', {
318                   'dependencies': [
319                     '../pdf/pdf.gyp:pdf',
320                   ],
321                 }],
322               ],  # conditions
323             }],  # OS=="mac"
324           ],  # conditions
325         },  # target chrome_main_dll
326       ],  # targets
327     }],  # OS=="mac" or OS=="win"
328     ['OS=="win"', {
329       'targets': [
330         {
331           # This target is only depended upon on Windows.
332           'target_name': 'chrome_dll_pdb_workaround',
333           'type': 'static_library',
334           'sources': [ 'empty_pdb_workaround.cc' ],
335           'conditions': [
336             ['fastbuild==0 or win_z7!=0', {
337              'msvs_settings': {
338               'VCCLCompilerTool': {
339                 # This *in the compile phase* must match the pdb name that's
340                 # output by the final link. See empty_pdb_workaround.cc for
341                 # more details.
342                 'DebugInformationFormat': '3',
343                 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/chrome.dll.pdb',
344               },
345              },
346             }],
347           ],
348         },
349       ],
350     }],
351     ['chrome_multiple_dll', {
352       'targets': [
353         {
354           'target_name': 'chrome_child_dll',
355           'type': 'shared_library',
356           'product_name': 'chrome_child',
357           'variables': {
358             'enable_wexit_time_destructors': 1,
359           },
360           'dependencies': [
361             '<@(chromium_child_dependencies)',
362             '../content/content.gyp:content_app_child',
363             '../content/content.gyp:content_worker',
364             'chrome_version_resources',
365             'policy_path_parser',
366           ],
367           'defines': [
368             'CHROME_MULTIPLE_DLL_CHILD',
369           ],
370           'sources': [
371             '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc',
372             'app/chrome_main.cc',
373             'app/chrome_main_delegate.cc',
374             'app/chrome_main_delegate.h',
375           ],
376           'conditions': [
377             ['OS=="win"', {
378               'dependencies': [
379                 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
380               ],
381               'conditions': [
382                 ['chrome_pgo_phase==1', {
383                   'msvs_settings': {
384                     'VCLinkerTool': {
385                       'LinkTimeCodeGeneration': '2',
386                     },
387                   },
388                 }],
389                 ['chrome_pgo_phase==2', {
390                   'msvs_settings': {
391                     'VCLinkerTool': {
392                       'LinkTimeCodeGeneration': '3',
393                     },
394                   },
395                 }],
396               ]
397             }],
398           ],
399         },  # target chrome_child_dll
400       ],
401     }],
402   ],
403 }