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