summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-01-26 21:38:11 -0800
committerAnna Henningsen <anna@addaleax.net>2017-03-29 05:14:55 +0200
commit1fde98bb4fa5cab0d060994768ebd055ce6fbf2c (patch)
tree9bac24c149cc8ac88c1edc30ede6ddaa952ae47e /node.gyp
parent6d93508369481591ba31f34bddfd95e2cc151edb (diff)
downloadandroid-node-v8-1fde98bb4fa5cab0d060994768ebd055ce6fbf2c.tar.gz
android-node-v8-1fde98bb4fa5cab0d060994768ebd055ce6fbf2c.tar.bz2
android-node-v8-1fde98bb4fa5cab0d060994768ebd055ce6fbf2c.zip
v8: expose new V8 serialization API
Expose the new serialization API that was added in V8 5.5 to userland. The JS API is virtually a direct copy of what V8 provides on the C++ level. This is useful Node as a possible replacement for some internals that currently use JSON, like IPC, but is likely to be useful to general userland code as well. PR-URL: https://github.com/nodejs/node/pull/11048 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp1
1 files changed, 1 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index b08bda0dad..597df9d126 100644
--- a/node.gyp
+++ b/node.gyp
@@ -177,6 +177,7 @@
'src/node_main.cc',
'src/node_os.cc',
'src/node_revert.cc',
+ 'src/node_serdes.cc',
'src/node_url.cc',
'src/node_util.cc',
'src/node_v8.cc',