build: Remove building against a shared V8
[platform/upstream/nodejs.git] / node.gyp
1 {
2   'variables': {
3     'v8_use_snapshot%': 'false',
4     'node_use_dtrace%': 'false',
5     'node_use_lttng%': 'false',
6     'node_use_etw%': 'false',
7     'node_use_perfctr%': 'false',
8     'node_has_winsdk%': 'false',
9     'node_shared_zlib%': 'false',
10     'node_shared_http_parser%': 'false',
11     'node_shared_libuv%': 'false',
12     'node_use_openssl%': 'true',
13     'node_shared_openssl%': 'false',
14     'node_v8_options%': '',
15     'library_files': [
16       'src/node.js',
17       'lib/_debug_agent.js',
18       'lib/_debugger.js',
19       'lib/_linklist.js',
20       'lib/assert.js',
21       'lib/buffer.js',
22       'lib/child_process.js',
23       'lib/console.js',
24       'lib/constants.js',
25       'lib/crypto.js',
26       'lib/cluster.js',
27       'lib/dgram.js',
28       'lib/dns.js',
29       'lib/domain.js',
30       'lib/events.js',
31       'lib/freelist.js',
32       'lib/fs.js',
33       'lib/http.js',
34       'lib/_http_agent.js',
35       'lib/_http_client.js',
36       'lib/_http_common.js',
37       'lib/_http_incoming.js',
38       'lib/_http_outgoing.js',
39       'lib/_http_server.js',
40       'lib/https.js',
41       'lib/module.js',
42       'lib/net.js',
43       'lib/os.js',
44       'lib/path.js',
45       'lib/process.js',
46       'lib/punycode.js',
47       'lib/querystring.js',
48       'lib/readline.js',
49       'lib/repl.js',
50       'lib/smalloc.js',
51       'lib/stream.js',
52       'lib/_stream_readable.js',
53       'lib/_stream_writable.js',
54       'lib/_stream_duplex.js',
55       'lib/_stream_transform.js',
56       'lib/_stream_passthrough.js',
57       'lib/_stream_wrap.js',
58       'lib/string_decoder.js',
59       'lib/sys.js',
60       'lib/timers.js',
61       'lib/tls.js',
62       'lib/_tls_common.js',
63       'lib/_tls_legacy.js',
64       'lib/_tls_wrap.js',
65       'lib/tty.js',
66       'lib/url.js',
67       'lib/util.js',
68       'lib/v8.js',
69       'lib/vm.js',
70       'lib/zlib.js',
71
72       'lib/internal/freelist.js',
73     ],
74   },
75
76   'targets': [
77     {
78       'target_name': 'iojs',
79       'type': 'executable',
80
81       'dependencies': [
82         'node_js2c#host',
83         'deps/cares/cares.gyp:cares',
84         'deps/v8/tools/gyp/v8.gyp:v8',
85         'deps/v8/tools/gyp/v8.gyp:v8_libplatform'
86       ],
87
88       'include_dirs': [
89         'src',
90         'tools/msvs/genfiles',
91         'deps/uv/src/ares',
92         '<(SHARED_INTERMEDIATE_DIR)', # for node_natives.h
93         'deps/v8' # include/v8_platform.h
94       ],
95
96       'sources': [
97         'src/debug-agent.cc',
98         'src/async-wrap.cc',
99         'src/fs_event_wrap.cc',
100         'src/cares_wrap.cc',
101         'src/handle_wrap.cc',
102         'src/js_stream.cc',
103         'src/node.cc',
104         'src/node_buffer.cc',
105         'src/node_constants.cc',
106         'src/node_contextify.cc',
107         'src/node_file.cc',
108         'src/node_http_parser.cc',
109         'src/node_javascript.cc',
110         'src/node_main.cc',
111         'src/node_os.cc',
112         'src/node_v8.cc',
113         'src/node_stat_watcher.cc',
114         'src/node_watchdog.cc',
115         'src/node_zlib.cc',
116         'src/node_i18n.cc',
117         'src/pipe_wrap.cc',
118         'src/signal_wrap.cc',
119         'src/smalloc.cc',
120         'src/spawn_sync.cc',
121         'src/string_bytes.cc',
122         'src/stream_base.cc',
123         'src/stream_wrap.cc',
124         'src/tcp_wrap.cc',
125         'src/timer_wrap.cc',
126         'src/tty_wrap.cc',
127         'src/process_wrap.cc',
128         'src/udp_wrap.cc',
129         'src/uv.cc',
130         # headers to make for a more pleasant IDE experience
131         'src/async-wrap.h',
132         'src/async-wrap-inl.h',
133         'src/base-object.h',
134         'src/base-object-inl.h',
135         'src/debug-agent.h',
136         'src/env.h',
137         'src/env-inl.h',
138         'src/handle_wrap.h',
139         'src/js_stream.h',
140         'src/node.h',
141         'src/node_buffer.h',
142         'src/node_constants.h',
143         'src/node_file.h',
144         'src/node_http_parser.h',
145         'src/node_internals.h',
146         'src/node_javascript.h',
147         'src/node_root_certs.h',
148         'src/node_version.h',
149         'src/node_watchdog.h',
150         'src/node_wrap.h',
151         'src/node_i18n.h',
152         'src/pipe_wrap.h',
153         'src/smalloc.h',
154         'src/tty_wrap.h',
155         'src/tcp_wrap.h',
156         'src/udp_wrap.h',
157         'src/req-wrap.h',
158         'src/req-wrap-inl.h',
159         'src/string_bytes.h',
160         'src/stream_base.h',
161         'src/stream_base-inl.h',
162         'src/stream_wrap.h',
163         'src/tree.h',
164         'src/util.h',
165         'src/util-inl.h',
166         'src/util.cc',
167         'deps/http_parser/http_parser.h',
168         'deps/v8/include/v8.h',
169         'deps/v8/include/v8-debug.h',
170         '<(SHARED_INTERMEDIATE_DIR)/node_natives.h',
171         # javascript files to make for an even more pleasant IDE experience
172         '<@(library_files)',
173         # node.gyp is added to the project by default.
174         'common.gypi',
175       ],
176
177       'defines': [
178         'NODE_ARCH="<(target_arch)"',
179         'NODE_PLATFORM="<(OS)"',
180         'NODE_TAG="<(node_tag)"',
181         'NODE_V8_OPTIONS="<(node_v8_options)"',
182         'NODE_WANT_INTERNALS=1',
183       ],
184
185       'conditions': [
186         [ 'v8_enable_i18n_support==1', {
187           'defines': [ 'NODE_HAVE_I18N_SUPPORT=1' ],
188           'dependencies': [
189             '<(icu_gyp_path):icui18n',
190             '<(icu_gyp_path):icuuc',
191           ],
192           'conditions': [
193             [ 'icu_small=="true"', {
194               'defines': [ 'NODE_HAVE_SMALL_ICU=1' ],
195           }]],
196         }],
197         [ 'node_use_openssl=="true"', {
198           'defines': [ 'HAVE_OPENSSL=1' ],
199           'sources': [
200             'src/node_crypto.cc',
201             'src/node_crypto_bio.cc',
202             'src/node_crypto_clienthello.cc',
203             'src/node_crypto.h',
204             'src/node_crypto_bio.h',
205             'src/node_crypto_clienthello.h',
206             'src/tls_wrap.cc',
207             'src/tls_wrap.h'
208           ],
209           'conditions': [
210             [ 'node_shared_openssl=="false"', {
211               'dependencies': [
212                 './deps/openssl/openssl.gyp:openssl',
213
214                 # For tests
215                 './deps/openssl/openssl.gyp:openssl-cli',
216               ],
217               # Do not let unused OpenSSL symbols to slip away
218               'xcode_settings': {
219                 'OTHER_LDFLAGS': [
220                   '-Wl,-force_load,<(PRODUCT_DIR)/libopenssl.a',
221                 ],
222               },
223               'conditions': [
224                 ['OS in "linux freebsd"', {
225                   'ldflags': [
226                     '-Wl,--whole-archive <(PRODUCT_DIR)/libopenssl.a -Wl,--no-whole-archive',
227                   ],
228                 }],
229               ],
230             }]]
231         }, {
232           'defines': [ 'HAVE_OPENSSL=0' ]
233         }],
234         [ 'node_use_dtrace=="true"', {
235           'defines': [ 'HAVE_DTRACE=1' ],
236           'dependencies': [
237             'node_dtrace_header',
238             'specialize_node_d',
239           ],
240           'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)' ],
241
242           #
243           # DTrace is supported on linux, solaris, mac, and bsd.  There are
244           # three object files associated with DTrace support, but they're
245           # not all used all the time:
246           #
247           #   node_dtrace.o           all configurations
248           #   node_dtrace_ustack.o    not supported on mac and linux
249           #   node_dtrace_provider.o  All except OS X.  "dtrace -G" is not
250           #                           used on OS X.
251           #
252           # Note that node_dtrace_provider.cc and node_dtrace_ustack.cc do not
253           # actually exist.  They're listed here to trick GYP into linking the
254           # corresponding object files into the final "node" executable.  These
255           # object files are generated by "dtrace -G" using custom actions
256           # below, and the GYP-generated Makefiles will properly build them when
257           # needed.
258           #
259           'sources': [ 'src/node_dtrace.cc' ],
260           'conditions': [
261             [ 'OS=="linux"', {
262               'sources': [
263                 '<(SHARED_INTERMEDIATE_DIR)/node_dtrace_provider.o'
264               ],
265             }],
266             [ 'OS!="mac" and OS!="linux"', {
267               'sources': [
268                 'src/node_dtrace_ustack.cc',
269                 'src/node_dtrace_provider.cc',
270               ]
271             }
272           ] ]
273         } ],
274         [ 'node_use_lttng=="true"', {
275           'defines': [ 'HAVE_LTTNG=1' ],
276           'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)' ],
277           'libraries': [ '-llttng-ust' ],
278           'sources': [
279             'src/node_lttng.cc'
280           ],
281         } ],
282         [ 'node_use_etw=="true"', {
283           'defines': [ 'HAVE_ETW=1' ],
284           'dependencies': [ 'node_etw' ],
285           'sources': [
286             'src/node_win32_etw_provider.h',
287             'src/node_win32_etw_provider-inl.h',
288             'src/node_win32_etw_provider.cc',
289             'src/node_dtrace.cc',
290             'tools/msvs/genfiles/node_etw_provider.h',
291             'tools/msvs/genfiles/node_etw_provider.rc',
292           ]
293         } ],
294         [ 'node_use_perfctr=="true"', {
295           'defines': [ 'HAVE_PERFCTR=1' ],
296           'dependencies': [ 'node_perfctr' ],
297           'sources': [
298             'src/node_win32_perfctr_provider.h',
299             'src/node_win32_perfctr_provider.cc',
300             'src/node_counters.cc',
301             'src/node_counters.h',
302             'tools/msvs/genfiles/node_perfctr_provider.rc',
303           ]
304         } ],
305         [ 'v8_postmortem_support=="true"', {
306           'dependencies': [ 'deps/v8/tools/gyp/v8.gyp:postmortem-metadata' ],
307           'xcode_settings': {
308             'OTHER_LDFLAGS': [
309               '-Wl,-force_load,<(V8_BASE)',
310             ],
311           },
312         }],
313         [ 'node_shared_zlib=="false"', {
314           'dependencies': [ 'deps/zlib/zlib.gyp:zlib' ],
315         }],
316
317         [ 'node_shared_http_parser=="false"', {
318           'dependencies': [ 'deps/http_parser/http_parser.gyp:http_parser' ],
319         }],
320
321         [ 'node_shared_libuv=="false"', {
322           'dependencies': [ 'deps/uv/uv.gyp:libuv' ],
323         }],
324
325         [ 'OS=="win"', {
326           'sources': [
327             'src/res/node.rc',
328           ],
329           'defines!': [
330             'NODE_PLATFORM="win"',
331           ],
332           'defines': [
333             'FD_SETSIZE=1024',
334             # we need to use node's preferred "win32" rather than gyp's preferred "win"
335             'NODE_PLATFORM="win32"',
336             '_UNICODE=1',
337           ],
338           'libraries': [ '-lpsapi.lib' ]
339         }, { # POSIX
340           'defines': [ '__POSIX__' ],
341         }],
342         [ 'OS=="mac"', {
343           # linking Corefoundation is needed since certain OSX debugging tools
344           # like Instruments require it for some features
345           'libraries': [ '-framework CoreFoundation' ],
346           'defines!': [
347             'NODE_PLATFORM="mac"',
348           ],
349           'defines': [
350             # we need to use node's preferred "darwin" rather than gyp's preferred "mac"
351             'NODE_PLATFORM="darwin"',
352           ],
353         }],
354         [ 'OS=="freebsd"', {
355           'libraries': [
356             '-lutil',
357             '-lkvm',
358           ],
359         }],
360         [ 'OS=="solaris"', {
361           'libraries': [
362             '-lkstat',
363             '-lumem',
364           ],
365           'defines!': [
366             'NODE_PLATFORM="solaris"',
367           ],
368           'defines': [
369             # we need to use node's preferred "sunos"
370             # rather than gyp's preferred "solaris"
371             'NODE_PLATFORM="sunos"',
372           ],
373         }],
374         [ 'OS=="freebsd" or OS=="linux"', {
375           'ldflags': [ '-Wl,-z,noexecstack',
376                        '-Wl,--whole-archive <(V8_BASE)',
377                        '-Wl,--no-whole-archive' ]
378         }],
379         [ 'OS=="sunos"', {
380           'ldflags': [ '-Wl,-M,/usr/lib/ld/map.noexstk' ],
381         }],
382       ],
383       'msvs_settings': {
384         'VCManifestTool': {
385           'EmbedManifest': 'true',
386           'AdditionalManifestFiles': 'src/res/node.exe.extra.manifest'
387         }
388       },
389     },
390     # generate ETW header and resource files
391     {
392       'target_name': 'node_etw',
393       'type': 'none',
394       'conditions': [
395         [ 'node_use_etw=="true" and node_has_winsdk=="true"', {
396           'actions': [
397             {
398               'action_name': 'node_etw',
399               'inputs': [ 'src/res/node_etw_provider.man' ],
400               'outputs': [
401                 'tools/msvs/genfiles/node_etw_provider.rc',
402                 'tools/msvs/genfiles/node_etw_provider.h',
403                 'tools/msvs/genfiles/node_etw_providerTEMP.BIN',
404               ],
405               'action': [ 'mc <@(_inputs) -h tools/msvs/genfiles -r tools/msvs/genfiles' ]
406             }
407           ]
408         } ]
409       ]
410     },
411     # generate perf counter header and resource files
412     {
413       'target_name': 'node_perfctr',
414       'type': 'none',
415       'conditions': [
416         [ 'node_use_perfctr=="true" and node_has_winsdk=="true"', {
417           'actions': [
418             {
419               'action_name': 'node_perfctr_man',
420               'inputs': [ 'src/res/node_perfctr_provider.man' ],
421               'outputs': [
422                 'tools/msvs/genfiles/node_perfctr_provider.h',
423                 'tools/msvs/genfiles/node_perfctr_provider.rc',
424                 'tools/msvs/genfiles/MSG00001.BIN',
425               ],
426               'action': [ 'ctrpp <@(_inputs) '
427                           '-o tools/msvs/genfiles/node_perfctr_provider.h '
428                           '-rc tools/msvs/genfiles/node_perfctr_provider.rc'
429               ]
430             },
431           ],
432         } ]
433       ]
434     },
435     {
436       'target_name': 'node_js2c',
437       'type': 'none',
438       'toolsets': ['host'],
439       'actions': [
440         {
441           'action_name': 'node_js2c',
442           'inputs': [
443             '<@(library_files)',
444             './config.gypi',
445           ],
446           'outputs': [
447             '<(SHARED_INTERMEDIATE_DIR)/node_natives.h',
448           ],
449           'conditions': [
450             [ 'node_use_dtrace=="false" and node_use_etw=="false"', {
451               'inputs': [ 'src/notrace_macros.py' ]
452             }],
453             ['node_use_lttng=="false"', {
454               'inputs': [ 'src/nolttng_macros.py' ]
455             }],
456             [ 'node_use_perfctr=="false"', {
457               'inputs': [ 'src/perfctr_macros.py' ]
458             }]
459           ],
460           'action': [
461             '<(python)',
462             'tools/js2c.py',
463             '<@(_outputs)',
464             '<@(_inputs)',
465           ],
466         },
467       ],
468     }, # end node_js2c
469     {
470       'target_name': 'node_dtrace_header',
471       'type': 'none',
472       'conditions': [
473         [ 'node_use_dtrace=="true" and OS!="linux"', {
474           'actions': [
475             {
476               'action_name': 'node_dtrace_header',
477               'inputs': [ 'src/node_provider.d' ],
478               'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/node_provider.h' ],
479               'action': [ 'dtrace', '-h', '-xnolibs', '-s', '<@(_inputs)',
480                 '-o', '<@(_outputs)' ]
481             }
482           ]
483         } ],
484         [ 'node_use_dtrace=="true" and OS=="linux"', {
485           'actions': [
486             {
487               'action_name': 'node_dtrace_header',
488               'inputs': [ 'src/node_provider.d' ],
489               'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/node_provider.h' ],
490               'action': [ 'dtrace', '-h', '-s', '<@(_inputs)',
491                 '-o', '<@(_outputs)' ]
492             }
493           ]
494         } ],
495       ]
496     },
497     {
498       'target_name': 'node_dtrace_provider',
499       'type': 'none',
500       'conditions': [
501         [ 'node_use_dtrace=="true" and OS!="mac" and OS!="linux"', {
502           'actions': [
503             {
504               'action_name': 'node_dtrace_provider_o',
505               'inputs': [
506                 '<(OBJ_DIR)/iojs/src/node_dtrace.o',
507               ],
508               'outputs': [
509                 '<(OBJ_DIR)/iojs/src/node_dtrace_provider.o'
510               ],
511               'action': [ 'dtrace', '-G', '-xnolibs', '-s', 'src/node_provider.d',
512                 '<@(_inputs)', '-o', '<@(_outputs)' ]
513             }
514           ]
515         }],
516         [ 'node_use_dtrace=="true" and OS=="linux"', {
517           'actions': [
518             {
519               'action_name': 'node_dtrace_provider_o',
520               'inputs': [ 'src/node_provider.d' ],
521               'outputs': [
522                 '<(SHARED_INTERMEDIATE_DIR)/node_dtrace_provider.o'
523               ],
524               'action': [
525                 'dtrace', '-C', '-G', '-s', '<@(_inputs)', '-o', '<@(_outputs)'
526               ],
527             }
528           ],
529         }],
530       ]
531     },
532     {
533       'target_name': 'node_dtrace_ustack',
534       'type': 'none',
535       'conditions': [
536         [ 'node_use_dtrace=="true" and OS!="mac" and OS!="linux"', {
537           'actions': [
538             {
539               'action_name': 'node_dtrace_ustack_constants',
540               'inputs': [
541                 '<(V8_BASE)'
542               ],
543               'outputs': [
544                 '<(SHARED_INTERMEDIATE_DIR)/v8constants.h'
545               ],
546               'action': [
547                 'tools/genv8constants.py',
548                 '<@(_outputs)',
549                 '<@(_inputs)'
550               ]
551             },
552             {
553               'action_name': 'node_dtrace_ustack',
554               'inputs': [
555                 'src/v8ustack.d',
556                 '<(SHARED_INTERMEDIATE_DIR)/v8constants.h'
557               ],
558               'outputs': [
559                 '<(OBJ_DIR)/iojs/src/node_dtrace_ustack.o'
560               ],
561               'conditions': [
562                 [ 'target_arch=="ia32"', {
563                   'action': [
564                     'dtrace', '-32', '-I<(SHARED_INTERMEDIATE_DIR)', '-Isrc',
565                     '-C', '-G', '-s', 'src/v8ustack.d', '-o', '<@(_outputs)',
566                   ]
567                 } ],
568                 [ 'target_arch=="x64"', {
569                   'action': [
570                     'dtrace', '-64', '-I<(SHARED_INTERMEDIATE_DIR)', '-Isrc',
571                     '-C', '-G', '-s', 'src/v8ustack.d', '-o', '<@(_outputs)',
572                   ]
573                 } ],
574               ]
575             },
576           ]
577         } ],
578       ]
579     },
580     {
581       'target_name': 'specialize_node_d',
582       'type': 'none',
583       'conditions': [
584         [ 'node_use_dtrace=="true"', {
585           'actions': [
586             {
587               'action_name': 'specialize_node_d',
588               'inputs': [
589                 'src/node.d'
590               ],
591               'outputs': [
592                 '<(PRODUCT_DIR)/node.d',
593               ],
594               'action': [
595                 'tools/specialize_node_d.py',
596                 '<@(_outputs)',
597                 '<@(_inputs)',
598                 '<@(OS)',
599                 '<@(target_arch)',
600               ],
601             },
602           ],
603         } ],
604       ]
605     },
606     {
607       'target_name': 'cctest',
608       'type': 'executable',
609       'dependencies': [ 
610         'deps/gtest/gtest.gyp:gtest',
611         'deps/v8/tools/gyp/v8.gyp:v8',
612         'deps/v8/tools/gyp/v8.gyp:v8_libplatform'
613       ],
614       'include_dirs': [
615         'src',
616         'deps/v8/include'
617       ],
618       'defines': [
619         # gtest's ASSERT macros conflict with our own.
620         'GTEST_DONT_DEFINE_ASSERT_EQ=1',
621         'GTEST_DONT_DEFINE_ASSERT_GE=1',
622         'GTEST_DONT_DEFINE_ASSERT_GT=1',
623         'GTEST_DONT_DEFINE_ASSERT_LE=1',
624         'GTEST_DONT_DEFINE_ASSERT_LT=1',
625         'GTEST_DONT_DEFINE_ASSERT_NE=1',
626       ],
627       'sources': [
628         'test/cctest/util.cc',
629       ],
630     }
631   ] # end targets
632 }