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