|
9 | 9 | '<(node_root_dir)/deps/uv/include', |
10 | 10 | '<(node_root_dir)/deps/v8/include' |
11 | 11 | ], |
12 | | - 'defines': ['NODE_GYP_MODULE_NAME=>(_target_name)'], |
| 12 | + 'defines': [ |
| 13 | + 'NODE_GYP_MODULE_NAME=>(_target_name)' |
| 14 | + ], |
13 | 15 |
|
14 | 16 | 'target_conditions': [ |
15 | 17 | ['_type=="loadable_module"', { |
16 | 18 | 'product_extension': 'node', |
17 | | - 'defines': [ 'BUILDING_NODE_EXTENSION' ], |
| 19 | + 'defines': [ |
| 20 | + 'BUILDING_NODE_EXTENSION' |
| 21 | + ], |
18 | 22 | 'xcode_settings': { |
19 | | - 'OTHER_LDFLAGS': [ '-undefined dynamic_lookup' ], |
| 23 | + 'OTHER_LDFLAGS': [ |
| 24 | + '-undefined dynamic_lookup' |
| 25 | + ], |
20 | 26 | }, |
21 | 27 | }], |
22 | 28 |
|
|
51 | 57 |
|
52 | 58 | 'conditions': [ |
53 | 59 | [ 'OS=="mac"', { |
54 | | - 'defines': [ '_DARWIN_USE_64_BIT_INODE=1' ], |
| 60 | + 'defines': [ |
| 61 | + '_DARWIN_USE_64_BIT_INODE=1' |
| 62 | + ], |
55 | 63 | 'xcode_settings': { |
56 | 64 | 'DYLIB_INSTALL_NAME_BASE': '@rpath' |
57 | 65 | }, |
|
72 | 80 | '-lDelayImp.lib', |
73 | 81 | '-l"<(node_root_dir)/$(ConfigurationName)/node.lib"' |
74 | 82 | ], |
75 | | - # warning C4251: 'node::ObjectWrap::handle_' : class 'v8::Persistent<T>' |
76 | | - # needs to have dll-interface to be used by clients of class 'node::ObjectWrap' |
77 | | - 'msvs_disabled_warnings': [ 4251 ], |
| 83 | + 'msvs_disabled_warnings': [ |
| 84 | + # warning C4251: 'node::ObjectWrap::handle_' : class 'v8::Persistent<T>' |
| 85 | + # needs to have dll-interface to be used by |
| 86 | + # clients of class 'node::ObjectWrap' |
| 87 | + 4251 |
| 88 | + ], |
78 | 89 | }, { |
79 | 90 | # OS!="win" |
80 | | - 'defines': [ '_LARGEFILE_SOURCE', '_FILE_OFFSET_BITS=64' ], |
| 91 | + 'defines': [ |
| 92 | + '_LARGEFILE_SOURCE', |
| 93 | + '_FILE_OFFSET_BITS=64' |
| 94 | + ], |
81 | 95 | }], |
82 | 96 | [ 'OS=="freebsd" or OS=="openbsd" or OS=="solaris" or (OS=="linux" and target_arch!="ia32")', { |
83 | 97 | 'cflags': [ '-fPIC' ], |
|
0 commit comments