summaryrefslogtreecommitdiff
path: root/tools/install.py
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2021-10-19 22:50:35 +0200
committerNode.js GitHub Bot <github-bot@iojs.org>2021-10-20 14:33:22 +0000
commit3ec3ba544cceb994177b1f8d198883ae4c0f7c80 (patch)
tree4c77f21ddd06b37c7f54f44063f2a0dfcfefe8eb /tools/install.py
parenta3970092693785f73161a80e81411fd043535eaa (diff)
downloadnode-new-3ec3ba544cceb994177b1f8d198883ae4c0f7c80.tar.gz
build: include missing V8 headers in distribution
Fixes: https://github.com/nodejs/Release/issues/704 PR-URL: https://github.com/nodejs/node/pull/40526 Fixes: https://github.com/nodejs/node/issues/40529 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'tools/install.py')
-rwxr-xr-xtools/install.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/install.py b/tools/install.py
index 0c3ca355f9..12512a983e 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -176,14 +176,18 @@ def headers(action):
'deps/v8/include/libplatform/v8-tracing.h',
'deps/v8/include/v8.h',
'deps/v8/include/v8-array-buffer.h',
+ 'deps/v8/include/v8-callbacks.h',
'deps/v8/include/v8-container.h',
'deps/v8/include/v8-context.h',
'deps/v8/include/v8-data.h',
'deps/v8/include/v8-date.h',
'deps/v8/include/v8-debug.h',
+ 'deps/v8/include/v8-embedder-heap.h',
'deps/v8/include/v8-exception.h',
'deps/v8/include/v8-extension.h',
'deps/v8/include/v8-external.h',
+ 'deps/v8/include/v8-forward.h',
+ 'deps/v8/include/v8-function-callback.h',
'deps/v8/include/v8-function.h',
'deps/v8/include/v8-initialization.h',
'deps/v8/include/v8-internal.h',
@@ -216,6 +220,7 @@ def headers(action):
'deps/v8/include/v8-value.h',
'deps/v8/include/v8-version.h',
'deps/v8/include/v8-wasm.h',
+ 'deps/v8/include/v8-weak-callback-info.h',
'deps/v8/include/v8config.h',
]
files_arg = [name for name in files_arg if name in v8_headers]