summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2013-09-24 14:12:11 -0700
committerTrevor Norris <trev.norris@gmail.com>2013-10-31 14:17:51 -0700
commitefa62fd9cc817434206d9fd8592b7bbeaa240e9c (patch)
treed3385ab0c74b20fab8d4e53cfa8408dafec69492 /node.gyp
parent21fbbd579080bab569c66100471a4c7b462bb0d6 (diff)
downloadandroid-node-v8-efa62fd9cc817434206d9fd8592b7bbeaa240e9c.tar.gz
android-node-v8-efa62fd9cc817434206d9fd8592b7bbeaa240e9c.tar.bz2
android-node-v8-efa62fd9cc817434206d9fd8592b7bbeaa240e9c.zip
node: add AsyncListener support
AsyncListener is a JS API that works in tandem with the AsyncWrap class to allow the user to be alerted to key events in the life cycle of an asynchronous event. The AsyncWrap class has its own MakeCallback implementation that core will be migrated to use, and uses state sharing techniques to allow quicker communication between JS and C++ whether the async event callbacks need to be called.
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp2
1 files changed, 2 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index 50c1394719..4bb73980d7 100644
--- a/node.gyp
+++ b/node.gyp
@@ -115,6 +115,8 @@
'src/udp_wrap.cc',
'src/uv.cc',
# headers to make for a more pleasant IDE experience
+ 'src/async-wrap.h',
+ 'src/async-wrap-inl.h',
'src/env.h',
'src/env-inl.h',
'src/handle_wrap.h',