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:
authorJoyee Cheung <joyeec9h3@gmail.com>2021-02-08 18:19:37 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2021-02-19 14:08:07 +0300
commit445108dc30968ae2adc1d027fb7c57db4d7b8372 (patch)
treec594cdff5b57a5f589937751b56f037ef50f4fc8 /src/node_external_reference.h
parent8aa9b772f4892ab44e74d3e7df0733408b7d2bc8 (diff)
bootstrap: include v8 module into the builtin snapshot
PR-URL: https://github.com/nodejs/node/pull/36943 Fixes: https://github.com/nodejs/node/issues/35930 Refs: https://github.com/nodejs/node/issues/35711 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_external_reference.h')
-rw-r--r--src/node_external_reference.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/node_external_reference.h b/src/node_external_reference.h
index 71d155cdb92..316d1d7b865 100644
--- a/src/node_external_reference.h
+++ b/src/node_external_reference.h
@@ -56,6 +56,7 @@ class ExternalReferenceRegistry {
V(fs) \
V(fs_dir) \
V(handle_wrap) \
+ V(heap_utils) \
V(messaging) \
V(native_module) \
V(process_methods) \
@@ -63,10 +64,14 @@ class ExternalReferenceRegistry {
V(task_queue) \
V(url) \
V(util) \
+ V(serdes) \
V(string_decoder) \
+ V(stream_wrap) \
V(trace_events) \
V(timers) \
V(types) \
+ V(uv) \
+ V(v8) \
V(worker)
#if NODE_HAVE_I18N_SUPPORT
@@ -76,7 +81,9 @@ class ExternalReferenceRegistry {
#endif // NODE_HAVE_I18N_SUPPORT
#if HAVE_INSPECTOR
-#define EXTERNAL_REFERENCE_BINDING_LIST_INSPECTOR(V) V(inspector)
+#define EXTERNAL_REFERENCE_BINDING_LIST_INSPECTOR(V) \
+ V(inspector) \
+ V(profiler)
#else
#define EXTERNAL_REFERENCE_BINDING_LIST_INSPECTOR(V)
#endif // HAVE_INSPECTOR