npm: Upgrade to v1.2.10
[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         'defines': [ '_DARWIN_USE_64_BIT_INODE=1' ],
21         'libraries': [ '-undefined dynamic_lookup' ],
22         'xcode_settings': {
23           'DYLIB_INSTALL_NAME_BASE': '@rpath'
24         },
25       }],
26       [ 'OS=="win"', {
27         'libraries': [ '-l<(node_root_dir)/$(Configuration)/node.lib' ],
28         # warning C4251: 'node::ObjectWrap::handle_' : class 'v8::Persistent<T>'
29         # needs to have dll-interface to be used by clients of class 'node::ObjectWrap'
30         'msvs_disabled_warnings': [ 4251 ],
31       }, {
32         # OS!="win"
33         'defines': [ '_LARGEFILE_SOURCE', '_FILE_OFFSET_BITS=64' ],
34       }],
35       [ 'OS=="freebsd" or OS=="openbsd" or OS=="solaris" or (OS=="linux" and target_arch!="ia32")', {
36         'cflags': [ '-fPIC' ],
37       }]
38     ]
39   }
40 }