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