![electron-roller[bot]](/assets/img/avatar_default.png)
* chore: bump chromium in DEPS to 137.0.7139.0 * chore: bump chromium in DEPS to 137.0.7141.0 * chore: update patches Refs6474596
Refs6443472
Refs6471184
* [ServiceWorker] Pipe is_for_service_worker into OverrideURLLoaderFactoryParams Refs6459481
* Reland "[PermissionOptions] Use PermissionDescriptorPtr in PermissionControllerDelegate" Refs6455975
* clickiness: Check attestation and user settings on origins Refs6356796
* extensions : Move ReloadExtension from ExtensionService Refs6472812
Refs6472777
* fixup! Update AppleKeychain API to be friendlier Refs6443472
* chore: script/gen-libc++-filenames.js * Rename ColorVariant::CovertToSkColor() to ColorVariant::ResolveToSkColor() Refs6373793
* [headless] Provide headless aware window metrics on Windows Refs6374074
--------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: deepak1556 <hop2deep@gmail.com>
31 lines
1 KiB
Diff
31 lines
1 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 5fbce38841f04dad38f202f529ae84c609c6a8de..9f5ef9bceade8e30bbd2be616b9143e9708fefd8 100644
|
|
--- a/third_party/simdutf/BUILD.gn
|
|
+++ b/third_party/simdutf/BUILD.gn
|
|
@@ -6,9 +6,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",
|