mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04: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 * build: fix GN build failure * build: fix patch indices * 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 * 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 * chore: fixup indices --------- 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 3f6571828197301361ebde2e19e8e3138597c276..a33cf302ce24385ce8c92a094a36a39346919793 100644
|
|
--- a/.gn
|
|
+++ b/.gn
|
|
@@ -172,4 +172,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",
|
|
]
|