summaryrefslogtreecommitdiff
path: root/tools/install.py
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2021-10-12 09:01:47 +0200
committerMichael Dawson <mdawson@devrus.com>2021-10-13 18:06:24 -0400
commitf9996d5b80a2014fd882c28225a6202b4a75aecf (patch)
treef12ee5733e1dda760140e4c33a861fa6b5d900d5 /tools/install.py
parent3b72788afb7365e10ae1e97c71d1f60ee29f09f2 (diff)
downloadnode-new-f9996d5b80a2014fd882c28225a6202b4a75aecf.tar.gz
build: include new public V8 headers in distribution
v8.h was split into a multitude of smaller headers. Refs: https://github.com/nodejs/node/issues/39876 PR-URL: https://github.com/nodejs/node/pull/40423 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'tools/install.py')
-rwxr-xr-xtools/install.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/tools/install.py b/tools/install.py
index 41cc1cbc60..0c3ca355f9 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -175,10 +175,47 @@ def headers(action):
'deps/v8/include/libplatform/libplatform-export.h',
'deps/v8/include/libplatform/v8-tracing.h',
'deps/v8/include/v8.h',
+ 'deps/v8/include/v8-array-buffer.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-exception.h',
+ 'deps/v8/include/v8-extension.h',
+ 'deps/v8/include/v8-external.h',
+ 'deps/v8/include/v8-function.h',
+ 'deps/v8/include/v8-initialization.h',
'deps/v8/include/v8-internal.h',
+ 'deps/v8/include/v8-isolate.h',
+ 'deps/v8/include/v8-json.h',
+ 'deps/v8/include/v8-local-handle.h',
+ 'deps/v8/include/v8-locker.h',
+ 'deps/v8/include/v8-maybe.h',
+ 'deps/v8/include/v8-memory-span.h',
+ 'deps/v8/include/v8-message.h',
+ 'deps/v8/include/v8-microtask-queue.h',
+ 'deps/v8/include/v8-microtask.h',
+ 'deps/v8/include/v8-object.h',
+ 'deps/v8/include/v8-persistent-handle.h',
'deps/v8/include/v8-platform.h',
+ 'deps/v8/include/v8-primitive-object.h',
+ 'deps/v8/include/v8-primitive.h',
'deps/v8/include/v8-profiler.h',
+ 'deps/v8/include/v8-promise.h',
+ 'deps/v8/include/v8-proxy.h',
+ 'deps/v8/include/v8-regexp.h',
+ 'deps/v8/include/v8-script.h',
+ 'deps/v8/include/v8-snapshot.h',
+ 'deps/v8/include/v8-statistics.h',
+ 'deps/v8/include/v8-template.h',
+ 'deps/v8/include/v8-traced-handle.h',
+ 'deps/v8/include/v8-typed-array.h',
+ 'deps/v8/include/v8-unwinder.h',
+ 'deps/v8/include/v8-value-serializer.h',
+ 'deps/v8/include/v8-value.h',
'deps/v8/include/v8-version.h',
+ 'deps/v8/include/v8-wasm.h',
'deps/v8/include/v8config.h',
]
files_arg = [name for name in files_arg if name in v8_headers]