de607cbcde
* chore: bump node in DEPS to v18.14.0 * src: add support for externally shared js builtins https://github.com/nodejs/node/pull/44376 * test: fix test broken under --node-builtin-modules-path https://github.com/nodejs/node/pull/45894 * build: add option to disable shared readonly heap https://github.com/nodejs/node/pull/45887 * src: remove unnecessary semicolons https://github.com/nodejs/node/pull/46171 * src: remove return after abort https://github.com/nodejs/node/pull/46172 * chore: fixup patch indices * test_runner: parse yaml https://github.com/nodejs/node/pull/45815 * src: use simdutf for converting externalized builtins to UTF-16 https://github.com/nodejs/node/pull/46119 * src: rename internal module declaration as internal bindings https://github.com/nodejs/node/pull/45551 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_COMMON_NODE_INCLUDES_H_
|
|
#define ELECTRON_SHELL_COMMON_NODE_INCLUDES_H_
|
|
|
|
// Include common headers for using node APIs.
|
|
|
|
#ifdef NODE_SHARED_MODE
|
|
#define BUILDING_NODE_EXTENSION
|
|
#endif
|
|
|
|
#undef debug_string // This is defined in macOS SDK in AssertMacros.h.
|
|
#undef require_string // This is defined in macOS SDK in AssertMacros.h.
|
|
|
|
#include "electron/push_and_undef_node_defines.h"
|
|
|
|
#include "env-inl.h"
|
|
#include "env.h"
|
|
#include "node.h"
|
|
#include "node_buffer.h"
|
|
#include "node_builtins.h"
|
|
#include "node_errors.h"
|
|
#include "node_internals.h"
|
|
#include "node_object_wrap.h"
|
|
#include "node_options-inl.h"
|
|
#include "node_options.h"
|
|
#include "node_platform.h"
|
|
#include "tracing/agent.h"
|
|
|
|
#include "electron/pop_node_defines.h"
|
|
|
|
// Alternative to NODE_MODULE_CONTEXT_AWARE_X.
|
|
// Allows to explicitly register builtin modules instead of using
|
|
// __attribute__((constructor)).
|
|
#define NODE_LINKED_MODULE_CONTEXT_AWARE(modname, regfunc) \
|
|
NODE_BINDING_CONTEXT_AWARE_CPP(modname, regfunc, nullptr, NM_F_LINKED)
|
|
|
|
#endif // ELECTRON_SHELL_COMMON_NODE_INCLUDES_H_
|