npm: upgrade to 1.1.70
[platform/upstream/nodejs.git] / deps / npm / node_modules / node-gyp / addon.gypi
1 {
2   'target_defaults': {
3     'type': 'loadable_module',
4     'product_prefix': '',
5     'include_dirs': [
6       '<(node_root_dir)/src',
7       '<(node_root_dir)/deps/uv/include',
8       '<(node_root_dir)/deps/v8/include'
9     ],
10
11     'target_conditions': [
12       ['_type=="loadable_module"', {
13         'product_extension': 'node',
14         'defines': [ 'BUILDING_NODE_EXTENSION' ],
15       }]
16     ],
17
18     'conditions': [
19       [ 'OS=="mac"', {
20         'libraries': [ '-undefined dynamic_lookup' ],
21         'xcode_settings': {
22           'DYLIB_INSTALL_NAME_BASE': '@rpath'
23         },
24       }],
25       [ 'OS=="win"', {
26         'libraries': [ '-l<(node_root_dir)/$(Configuration)/node.lib' ],
27         # warning C4251: 'node::ObjectWrap::handle_' : class 'v8::Persistent<T>'
28         # needs to have dll-interface to be used by clients of class 'node::ObjectWrap'
29         'msvs_disabled_warnings': [ 4251 ],
30       }],
31       [ 'OS=="freebsd" or OS=="openbsd" or OS=="solaris" or (OS=="linux" and target_arch!="ia32")', {
32         'cflags': [ '-fPIC' ],
33       }]
34     ]
35   }
36 }