Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions node.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
'deps/v8/src/third_party/vtune/v8vtune.gyp:v8_vtune'
],
}],
[ 'v8_inspector=="true"', {
[ 'v8_inspector=="true" and node_engine=="v8"', {
'defines': [
'HAVE_INSPECTOR=1',
'V8_INSPECTOR_USE_STL=1',
Expand Down Expand Up @@ -751,6 +751,17 @@
'deps/uv/uv.gyp:libuv'
],
}],
[ 'v8_inspector=="true" and node_engine=="v8"', {
'dependencies': [
'deps/openssl/openssl.gyp:openssl',
'deps/http_parser/http_parser.gyp:http_parser',
'deps/uv/uv.gyp:libuv'
],
'sources': [
'src/inspector_socket.cc',
'test/cctest/test_inspector_socket.cc'
]
}]
],
'msvs_settings': {
'VCLinkerTool': {
Expand All @@ -770,20 +781,6 @@
'sources': [
'test/cctest/util.cc',
],

'conditions': [
['v8_inspector=="true"', {
'dependencies': [
'deps/openssl/openssl.gyp:openssl',
'deps/http_parser/http_parser.gyp:http_parser',
'deps/uv/uv.gyp:libuv'
],
'sources': [
'src/inspector_socket.cc',
'test/cctest/test_inspector_socket.cc'
]
}]
]
}
], # end targets

Expand Down