diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2016-06-29 23:20:06 +0200 |
---|---|---|
committer | Myles Borins <mborins@us.ibm.com> | 2016-09-30 11:17:48 -0400 |
commit | a62999ac7039b22aca08ad978aa09228f03385ad (patch) | |
tree | d310f76e7c7d8b496c1e066e5af440568fbaee33 /deps | |
parent | f817875235aec724ba1c7130d7dfebb046b99da2 (diff) | |
download | node-new-a62999ac7039b22aca08ad978aa09228f03385ad.tar.gz |
src: add /json/protocol endpoint to inspector
Embed the compressed and minified protocol.json from the bundled
v8_inspector and make it available through the /json/protocol endpoint.
Refs: https://github.com/nodejs/diagnostics/issues/52
PR-URL: https://github.com/nodejs/node/pull/7491
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps')
-rw-r--r-- | deps/zlib/zlib.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/zlib/zlib.gyp b/deps/zlib/zlib.gyp index cf0b090d9e..65133d5fce 100644 --- a/deps/zlib/zlib.gyp +++ b/deps/zlib/zlib.gyp @@ -12,6 +12,7 @@ { 'target_name': 'zlib', 'type': 'static_library', + 'defines': [ 'ZLIB_CONST' ], 'sources': [ 'adler32.c', 'compress.c', @@ -44,6 +45,7 @@ '.', ], 'direct_dependent_settings': { + 'defines': [ 'ZLIB_CONST' ], 'include_dirs': [ '.', ], @@ -72,10 +74,12 @@ 'direct_dependent_settings': { 'defines': [ 'USE_SYSTEM_ZLIB', + 'ZLIB_CONST', ], }, 'defines': [ 'USE_SYSTEM_ZLIB', + 'ZLIB_CONST', ], 'link_settings': { 'libraries': [ |