mirror of
https://github.com/electron/electron.git
synced 2026-01-08 15:13:52 -05:00
* chore: bump node in DEPS to v22.15.0 * inspector: fix GN build https://github.com/nodejs/node/pull/56798 * test: search cctest files https://github.com/nodejs/node/pull/56791 * crypto: fix missing OPENSSL_NO_ENGINE guard https://github.com/nodejs/node/pull/57012 * test,crypto: make tests work for BoringSSL https://github.com/nodejs/node/pull/57021 * module: use synchronous hooks for preparsing in import(cjs) https://github.com/nodejs/node/pull/55698 * deps: update simdjson to 3.12.0 https://github.com/nodejs/node/pull/56874 * build: remove explicit linker call to libm on macOS https://github.com/nodejs/node/pull/56901 * test: make eval snapshot comparison more flexible https://github.com/nodejs/node/pull/57020 * src: allow embedder customization of OOMErrorHandler https://github.com/nodejs/node/pull/57325 * src: do not pass nullptr to std::string ctor https://github.com/nodejs/node/pull/57354 * src: lock the isolate properly in IsolateData destructor https://github.com/nodejs/node/pull/57031 * chore: shrink --trace-atomics-wait patch * chore: fixup patch indices * build: fix GN build failure https://github.com/nodejs/node/pull/57013 * crypto: expose security levels https://github.com/nodejs/node/pull/56601 * zlib: add zstd support https://github.com/nodejs/node/pull/52100 * test: move crypto related common utilities in common/crypto https://github.com/nodejs/node/pull/56714 * cli: move --trace-atomics-wait to eol https://github.com/nodejs/node/pull/52747 * test: disable test-https-client-renegotiation-limit BoringSSL doesn't support caller-initiated renegotiation - see https://source.chromium.org/chromium/chromium/src/+/main:third_party/boringssl/src/ssl/ssl_lib.cc;l=1627-1631 --------- 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.9 KiB
Diff
40 lines
1.9 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Attard <sattard@salesforce.com>
|
|
Date: Fri, 21 Oct 2022 16:29:06 -0700
|
|
Subject: build: allow electron to use exec_script
|
|
|
|
This is similar to the //build usecase so we're OK adding ourselves here
|
|
|
|
diff --git a/.gn b/.gn
|
|
index ae58a0b0a64ae1fdb3f9cd8587041d71a121c6b9..0ed56526002b12deb6d29f3dd23a0d74d8e7473c 100644
|
|
--- a/.gn
|
|
+++ b/.gn
|
|
@@ -167,4 +167,27 @@ exec_script_allowlist =
|
|
|
|
"//tools/grit/grit_rule.gni",
|
|
"//tools/gritsettings/BUILD.gn",
|
|
+
|
|
+ "//electron/BUILD.gn",
|
|
+ "//third_party/electron_node/deps/ada/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/base64/BUILD.gn",
|
|
+ "//third_party/electron_node/deps/base64/unofficial.gni",
|
|
+ "//third_party/electron_node/node.gni",
|
|
+ "//third_party/electron_node/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/brotli/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/cares/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/googletest/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/histogram/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/llhttp/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/nbytes/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/ncrypto/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/nghttp2/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/ngtcp2/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/openssl/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/simdjson/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/sqlite/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/uv/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/uvwasi/unofficial.gni",
|
|
+ "//third_party/electron_node/deps/zstd/unofficial.gni",
|
|
+ "//third_party/electron_node/src/inspector/unofficial.gni",
|
|
]
|