From f9996d5b80a2014fd882c28225a6202b4a75aecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Tue, 12 Oct 2021 09:01:47 +0200 Subject: [PATCH] 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 Reviewed-By: Joyee Cheung Reviewed-By: Richard Lau Reviewed-By: Beth Griggs Reviewed-By: Colin Ihrig Reviewed-By: Michael Dawson --- tools/install.py | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/tools/install.py b/tools/install.py index 41cc1cbc60a948..0c3ca355f9b9d6 100755 --- a/tools/install.py +++ b/tools/install.py @@ -175,10 +175,47 @@ def wanted_v8_headers(files_arg, dest): '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]