3194b0ac58582584ae3ae22544deae8532c48456
[platform/framework/web/crosswalk.git] / src / components / nacl.gyp
1 # Copyright 2013 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 {
6   'variables': {
7     'chromium_code': 1,
8   },
9   'includes': [
10     'nacl/nacl_defines.gypi',
11   ],
12   'target_defaults': {
13     'variables': {
14       'nacl_target': 0,
15     },
16     'target_conditions': [
17       # This part is shared between the targets defined below. Only files and
18       # settings relevant for building the Win64 target should be added here.
19       ['nacl_target==1', {
20         'include_dirs': [
21           '<(INTERMEDIATE_DIR)',
22         ],
23         'defines': [
24           '<@(nacl_defines)',
25         ],
26         'sources': [
27           # .cc, .h, and .mm files under nacl that are used on all
28           # platforms, including both 32-bit and 64-bit Windows.
29           # Test files are also not included.
30           'nacl/loader/nacl_ipc_adapter.cc',
31           'nacl/loader/nacl_ipc_adapter.h',
32           'nacl/loader/nacl_main.cc',
33           'nacl/loader/nacl_main_platform_delegate.h',
34           'nacl/loader/nacl_main_platform_delegate_linux.cc',
35           'nacl/loader/nacl_main_platform_delegate_mac.mm',
36           'nacl/loader/nacl_main_platform_delegate_win.cc',
37           'nacl/loader/nacl_listener.cc',
38           'nacl/loader/nacl_listener.h',
39           'nacl/loader/nacl_trusted_listener.cc',
40           'nacl/loader/nacl_trusted_listener.h',
41           'nacl/loader/nacl_validation_db.h',
42           'nacl/loader/nacl_validation_query.cc',
43           'nacl/loader/nacl_validation_query.h',
44         ],
45         # TODO(gregoryd): consider switching NaCl to use Chrome OS defines
46         'conditions': [
47           ['OS=="win"', {
48             'defines': [
49               '__STDC_LIMIT_MACROS=1',
50             ],
51             'include_dirs': [
52               '<(DEPTH)/third_party/wtl/include',
53             ],
54           },],
55           ['OS=="linux"', {
56             'defines': [
57               '__STDC_LIMIT_MACROS=1',
58             ],
59             'sources': [
60               '../components/nacl/common/nacl_paths.cc',
61               '../components/nacl/common/nacl_paths.h',
62               '../components/nacl/zygote/nacl_fork_delegate_linux.cc',
63               '../components/nacl/zygote/nacl_fork_delegate_linux.h',
64             ],
65           },],
66         ],
67       }],
68     ],
69   },
70   'conditions': [
71     ['disable_nacl!=1', {
72       'targets': [
73         {
74           'target_name': 'nacl',
75           'type': 'static_library',
76           'variables': {
77             'nacl_target': 1,
78           },
79           'dependencies': [
80             '../base/base.gyp:base',
81             '../ipc/ipc.gyp:ipc',
82             '../ppapi/native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPluginChrome',
83             '../ppapi/ppapi_internal.gyp:ppapi_shared',
84             '../ppapi/ppapi_internal.gyp:ppapi_ipc',
85             '../native_client/src/trusted/service_runtime/service_runtime.gyp:sel_main_chrome',
86           ],
87           'conditions': [
88             ['disable_nacl_untrusted==0', {
89               'dependencies': [
90                 '../ppapi/native_client/native_client.gyp:nacl_irt',
91                 '../ppapi/native_client/src/untrusted/pnacl_support_extension/pnacl_support_extension.gyp:pnacl_support_extension',
92               ],
93             }],
94           ],
95           'direct_dependent_settings': {
96             'defines': [
97               '<@(nacl_defines)',
98             ],
99           },
100         },
101         {
102           'target_name': 'nacl_browser',
103           'type': 'static_library',
104           'sources': [
105             'nacl/browser/nacl_broker_host_win.cc',
106             'nacl/browser/nacl_broker_host_win.h',
107             'nacl/browser/nacl_broker_service_win.cc',
108             'nacl/browser/nacl_broker_service_win.h',
109             'nacl/browser/nacl_browser.cc',
110             'nacl/browser/nacl_browser.h',
111             'nacl/browser/nacl_file_host.cc',
112             'nacl/browser/nacl_file_host.h',
113             'nacl/browser/nacl_host_message_filter.cc',
114             'nacl/browser/nacl_host_message_filter.h',
115             'nacl/browser/nacl_process_host.cc',
116             'nacl/browser/nacl_process_host.h',
117             'nacl/browser/nacl_validation_cache.cc',
118             'nacl/browser/nacl_validation_cache.h',
119             'nacl/browser/pnacl_host.cc',
120             'nacl/browser/pnacl_host.h',
121             'nacl/browser/pnacl_translation_cache.cc',
122             'nacl/browser/pnacl_translation_cache.h',
123             'nacl/common/nacl_debug_exception_handler_win.cc',
124             'nacl/common/nacl_debug_exception_handler_win.h',
125           ],
126           'include_dirs': [
127             '..',
128           ],
129           'dependencies': [
130             'nacl_common',
131             'nacl_switches',
132             '../native_client/src/trusted/service_runtime/service_runtime.gyp:sel',
133             '../content/content.gyp:content_browser',
134           ],
135           'defines': [
136             '<@(nacl_defines)',
137           ],
138           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
139           'msvs_disabled_warnings': [4267, ],
140         },
141         {
142           'target_name': 'nacl_renderer',
143           'type': 'static_library',
144           'sources': [
145             'nacl/renderer/nexe_load_manager.cc',
146             'nacl/renderer/nexe_load_manager.h',
147             'nacl/renderer/pnacl_translation_resource_host.cc',
148             'nacl/renderer/pnacl_translation_resource_host.h',
149             'nacl/renderer/ppb_nacl_private_impl.cc',
150             'nacl/renderer/ppb_nacl_private_impl.h',
151             'nacl/renderer/sandbox_arch.cc',
152             'nacl/renderer/sandbox_arch.h',
153             'nacl/renderer/trusted_plugin_channel.cc',
154             'nacl/renderer/trusted_plugin_channel.h',
155           ],
156           'include_dirs': [
157             '..',
158           ],
159           'dependencies': [
160             '../content/content.gyp:content_renderer',
161             '../third_party/WebKit/public/blink.gyp:blink',
162             '../webkit/common/webkit_common.gyp:webkit_common',
163           ],
164           'defines': [
165             '<@(nacl_defines)',
166           ],
167           'direct_dependent_settings': {
168             'defines': [
169               '<@(nacl_defines)',
170             ],
171           },
172         }
173       ],
174       'conditions': [
175         ['OS=="linux"', {
176           'targets': [
177             {
178               'target_name': 'nacl_helper',
179               'type': 'executable',
180               'include_dirs': [
181                 '..',
182               ],
183               'dependencies': [
184                 'nacl',
185                 'nacl_common',
186                 '../components/tracing.gyp:tracing',
187                 '../crypto/crypto.gyp:crypto',
188                 '../sandbox/sandbox.gyp:libc_urandom_override',
189                 '../sandbox/sandbox.gyp:sandbox',
190                 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
191               ],
192               'defines': [
193                 '<@(nacl_defines)',
194                 # Allow .cc files to know if they're being compiled as part
195                 # of nacl_helper.
196                 'IN_NACL_HELPER=1',
197               ],
198               'sources': [
199                 'nacl/loader/nacl_helper_linux.cc',
200                 'nacl/loader/nacl_helper_linux.h',
201                 'nacl/loader/nacl_sandbox_linux.cc',
202                 'nacl/loader/nonsfi/abi_conversion.cc',
203                 'nacl/loader/nonsfi/abi_conversion.h',
204                 'nacl/loader/nonsfi/elf_loader.cc',
205                 'nacl/loader/nonsfi/elf_loader.h',
206                 'nacl/loader/nonsfi/irt_basic.cc',
207                 'nacl/loader/nonsfi/irt_clock.cc',
208                 'nacl/loader/nonsfi/irt_fdio.cc',
209                 'nacl/loader/nonsfi/irt_futex.cc',
210                 'nacl/loader/nonsfi/irt_interfaces.cc',
211                 'nacl/loader/nonsfi/irt_interfaces.h',
212                 'nacl/loader/nonsfi/irt_memory.cc',
213                 'nacl/loader/nonsfi/irt_ppapi.cc',
214                 'nacl/loader/nonsfi/irt_thread.cc',
215                 'nacl/loader/nonsfi/irt_util.h',
216                 'nacl/loader/nonsfi/nonsfi_main.cc',
217                 'nacl/loader/nonsfi/nonsfi_main.h',
218                 '../ppapi/proxy/plugin_main_irt.cc',
219                 '../ppapi/proxy/plugin_main_irt.h',
220               ],
221               'conditions': [
222                 ['toolkit_uses_gtk == 1', {
223                   'dependencies': [
224                     '../build/linux/system.gyp:gtk',
225                   ],
226                 }],
227                 ['use_glib == 1', {
228                   'dependencies': [
229                     '../build/linux/system.gyp:glib',
230                   ],
231                 }],
232                 ['os_posix == 1 and OS != "mac"', {
233                   'conditions': [
234                     # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
235                     ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', {
236                       'dependencies': [
237                         '../base/allocator/allocator.gyp:allocator',
238                       ],
239                     }],
240                   ],
241                 }],
242                 ['use_seccomp_bpf == 0', {
243                   'sources!': [
244                     '../content/common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
245                     '../content/common/sandbox_linux/sandbox_init_linux.cc',
246                   ],
247                 }, {
248                   'defines': ['USE_SECCOMP_BPF'],
249                 }],
250               ],
251               'cflags': ['-fPIE'],
252               'link_settings': {
253                 'ldflags': ['-pie'],
254               },
255             },
256           ],
257         }],
258         ['OS=="win" and target_arch=="ia32"', {
259           'targets': [
260             {
261               'target_name': 'nacl_win64',
262               'type': 'static_library',
263               'variables': {
264                 'nacl_target': 1,
265               },
266               'dependencies': [
267                 'nacl_common_win64',
268                 '../native_client/src/trusted/service_runtime/service_runtime.gyp:sel_main_chrome64',
269                 '../ppapi/ppapi_internal.gyp:ppapi_shared_win64',
270                 '../ppapi/ppapi_internal.gyp:ppapi_ipc_win64',
271               ],
272               'export_dependent_settings': [
273                 '../ppapi/ppapi_internal.gyp:ppapi_ipc_win64',
274               ],
275               'sources': [
276                 '../components/nacl/broker/nacl_broker_listener.cc',
277                 '../components/nacl/broker/nacl_broker_listener.h',
278                 '../components/nacl/common/nacl_debug_exception_handler_win.cc',
279                 '../components/nacl/loader/nacl_helper_win_64.cc',
280                 '../components/nacl/loader/nacl_helper_win_64.h',
281               ],
282               'include_dirs': [
283                 '..',
284               ],
285               'defines': [
286                 '<@(nacl_win64_defines)',
287                 'COMPILE_CONTENT_STATICALLY',
288               ],
289               'configurations': {
290                 'Common_Base': {
291                   'msvs_target_platform': 'x64',
292                 },
293               },
294               'direct_dependent_settings': {
295                 'defines': [
296                   '<@(nacl_defines)',
297                 ],
298               },
299             },
300             {
301               'target_name': 'nacl_switches_win64',
302               'type': 'static_library',
303               'sources': [
304                 'nacl/common/nacl_switches.cc',
305                 'nacl/common/nacl_switches.h',
306               ],
307               'include_dirs': [
308                 '..',
309               ],
310               'configurations': {
311                 'Common_Base': {
312                   'msvs_target_platform': 'x64',
313                 },
314               },
315             },
316             {
317               'target_name': 'nacl_common_win64',
318               'type': 'static_library',
319               'defines': [
320                 'COMPILE_CONTENT_STATICALLY',
321               ],
322               'sources': [
323                 'nacl/common/nacl_cmd_line.cc',
324                 'nacl/common/nacl_cmd_line.h',
325                 'nacl/common/nacl_messages.cc',
326                 'nacl/common/nacl_messages.h',
327                 'nacl/common/nacl_types.cc',
328                 'nacl/common/nacl_types.h',
329               ],
330               'include_dirs': [
331                 '..',
332               ],
333               'configurations': {
334                 'Common_Base': {
335                   'msvs_target_platform': 'x64',
336                 },
337               },
338             },
339           ],
340         }],
341       ],
342     }, {  # else (disable_nacl==1)
343       'targets': [
344         {
345           'target_name': 'nacl',
346           'type': 'none',
347           'sources': [],
348         },
349       ],
350       'conditions': [
351         ['OS=="win"', {
352           'targets': [
353             {
354               'target_name': 'nacl_win64',
355               'type': 'none',
356               'sources': [],
357             },
358             {
359               'target_name': 'nacl_switches_win64',
360               'type': 'none',
361               'sources': [],
362             },
363           ],
364         }],
365       ],
366     }],
367   ],
368   'targets': [
369     {
370       'target_name': 'nacl_switches',
371       'type': 'static_library',
372       'sources': [
373         'nacl/common/nacl_switches.cc',
374         'nacl/common/nacl_switches.h',
375     ],
376       'include_dirs': [
377         '..',
378       ],
379     },
380     {
381       'target_name': 'nacl_common',
382       'type': 'static_library',
383       'sources': [
384         'nacl/common/nacl_cmd_line.cc',
385         'nacl/common/nacl_cmd_line.h',
386         'nacl/common/nacl_host_messages.h',
387         'nacl/common/nacl_host_messages.cc',
388         'nacl/common/nacl_messages.cc',
389         'nacl/common/nacl_messages.h',
390         'nacl/common/nacl_process_type.h',
391         'nacl/common/nacl_sandbox_type_mac.h',
392         'nacl/common/nacl_types.cc',
393         'nacl/common/nacl_types.h',
394         'nacl/common/pnacl_types.cc',
395         'nacl/common/pnacl_types.h',
396       ],
397       'include_dirs': [
398         '..',
399       ],
400       'dependencies': [
401         '../content/content.gyp:content_common',
402       ],
403     },
404   ]
405 }