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