Browse Source

More progress with gyp

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
bea4827de0
  1. 10
      deps/uv/build/all.gyp
  2. 19
      gyp/all.gyp

10
deps/uv/build/all.gyp

@ -1,4 +1,14 @@
{ {
'target_defaults': {
'configurations': {
'Debug': {
'defines': [ 'DEBUG', '_DEBUG' ]
},
'Release': {
'defines': [ 'NDEBUG' ]
}
}
},
'targets': [ 'targets': [
{ {
'target_name': 'uv', 'target_name': 'uv',

19
gyp/all.gyp

@ -1,11 +1,28 @@
{ {
'target_defaults': {
'configurations': {
'Debug': {
'defines': [ 'DEBUG', '_DEBUG' ]
},
'Release': {
'defines': [ 'NDEBUG' ]
}
}
},
'variables': {
'v8_use_snapshot': 'true',
'target_arch': 'x64',
},
'targets': [ 'targets': [
{ {
'target_name': 'node', 'target_name': 'node',
'type': 'executable', 'type': 'executable',
'dependencies': [ 'dependencies': [
'../deps/http_parser/http_parser.gyp:http_parser', '../deps/http_parser/http_parser.gyp:http_parser',
'../deps/v8/tools/gyp/v8.gyp:v8_snapshot', '../deps/v8/tools/gyp/v8.gyp:v8',
'../deps/uv/build/all.gyp:uv', '../deps/uv/build/all.gyp:uv',
'node_js2c#host' 'node_js2c#host'
], ],

Loading…
Cancel
Save