mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: bump chromium in DEPS to 146.0.7680.0 * fix(patch): constant moved to header Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7536483 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> (cherry picked from commit6b348354f6) * chore: update patches * 7535923: Rename ozone buildflags Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7535923 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> (cherry picked from commit96e2a174fd) * 7528398: [LNA] Rename PNA-named files to LNA-named files Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7528398 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> (cherry picked from commita4f879ce52) * 7534194: Convert some functions in ui::Clipboard to async Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7534194 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> (cherry picked from commit30bbb9456f) * 7544580: [DevTools] Add command to restart Chrome to DevTools UI bindings Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7544580 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> (cherry picked from commit6737a36cda) * fix(patch): V1 Keychain removal Upstream deleted the V1 Keychain API. Removed V1 hunks and adapted keychain_password_mac.mm to use KeychainV2 APIs. Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7540447 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> (cherry picked from commit02d423c1bb) * chore: update patches * fixup 7534194: Convert some functions in ui::Clipboard to async * chore: bump chromium in DEPS to 146.0.7680.16 * chore: update patches --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: clavin <clavin@electronjs.org> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Charles Kerr <charles@charleskerr.com>
|
|
Date: Mon, 9 Dec 2024 11:22:20 -0600
|
|
Subject: build: add public config simdutf_config
|
|
|
|
To avoid building two copies of simdutf, we have electron_node ignore
|
|
third_party/electron_node/deps/simdutf and use
|
|
third_party/simdutf instead.
|
|
|
|
To accomplish this, we need to make simdutf's config public here
|
|
for use by third_party/electron_node.
|
|
|
|
diff --git a/third_party/simdutf/BUILD.gn b/third_party/simdutf/BUILD.gn
|
|
index 05215d2610d5c4bed1381b6d3af39441bc1eb8c5..bbb3495511da95d56728eb092979bb1e5dd650c2 100644
|
|
--- a/third_party/simdutf/BUILD.gn
|
|
+++ b/third_party/simdutf/BUILD.gn
|
|
@@ -8,9 +8,14 @@ source_set("header") {
|
|
sources = [ "simdutf.h" ]
|
|
}
|
|
|
|
+config("simdutf_config") {
|
|
+ include_dirs = [ "." ]
|
|
+}
|
|
+
|
|
source_set("simdutf") {
|
|
sources = [ "simdutf.cpp" ]
|
|
public_deps = [ ":header" ]
|
|
+ public_configs = [ ":simdutf_config" ]
|
|
cflags_cc = [
|
|
"-Wno-unused-const-variable",
|
|
"-Wno-unused-function",
|