Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-06-07 17:54:29 +0300
committerMichaƫl Zasso <targos@protonmail.com>2018-06-13 14:01:23 +0300
commitaa468abc4c91656c15995578ce473dba53f0a10c (patch)
tree097808d395bda0ff5446ae23e1fad23b80dd1917 /node.gyp
parent5d3dfedca2980ca702849ead0451d44b215913a8 (diff)
src: unify native symbol inspection code
Use a single file, and a single interface, for inspecting symbols in the current process for debugging. PR-URL: https://github.com/nodejs/node/pull/21238 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp6
1 files changed, 1 insertions, 5 deletions
diff --git a/node.gyp b/node.gyp
index 6a3a8c015e7..2f3c342a74e 100644
--- a/node.gyp
+++ b/node.gyp
@@ -316,6 +316,7 @@
'src/cares_wrap.cc',
'src/connection_wrap.cc',
'src/connect_wrap.cc',
+ 'src/debug_utils.cc',
'src/env.cc',
'src/exceptions.cc',
'src/fs_event_wrap.cc',
@@ -495,9 +496,6 @@
'defines': [ 'HAVE_INSPECTOR=0' ]
}],
[ 'OS=="win"', {
- 'sources': [
- 'src/backtrace_win32.cc',
- ],
'conditions': [
[ 'node_intermediate_lib_type!="static_library"', {
'sources': [
@@ -506,8 +504,6 @@
}],
],
'libraries': [ '-lpsapi.lib' ]
- }, { # POSIX
- 'sources': [ 'src/backtrace_posix.cc' ],
}],
[ 'node_use_etw=="true"', {
'defines': [ 'HAVE_ETW=1' ],