PKGBUILDs/extra/chromium/0002-Run-blink-bindings-generation-single-threaded.patch

26 lines
866 B
Diff
Raw Normal View History

2022-04-26 23:33:32 +00:00
From f12b4ded135923ab34d5747c8baf0d9b5bfdedcf Mon Sep 17 00:00:00 2001
2021-07-21 18:31:16 +00:00
From: Kevin Mihelich <kevin@archlinuxarm.org>
Date: Tue, 2 Feb 2021 13:58:59 -0700
2021-07-22 12:32:08 +00:00
Subject: [PATCH 2/3] Run blink bindings generation single threaded
2021-07-21 18:31:16 +00:00
When not single threaded this process will eat all the RAM.
---
third_party/blink/renderer/bindings/BUILD.gn | 1 +
1 file changed, 1 insertion(+)
diff --git a/third_party/blink/renderer/bindings/BUILD.gn b/third_party/blink/renderer/bindings/BUILD.gn
2022-02-18 03:25:11 +00:00
index 3b474c47dc7ce..e7787535882f9 100644
2021-07-21 18:31:16 +00:00
--- a/third_party/blink/renderer/bindings/BUILD.gn
+++ b/third_party/blink/renderer/bindings/BUILD.gn
2021-09-01 13:05:13 +00:00
@@ -148,6 +148,7 @@ template("generate_bindings") {
2021-07-21 18:31:16 +00:00
outputs = invoker.outputs
args = [
2021-09-01 13:05:13 +00:00
+ "--single_process",
"--web_idl_database",
rebase_path(web_idl_database, root_build_dir),
"--root_src_dir",
2021-07-21 18:31:16 +00:00
--
2022-02-18 03:25:11 +00:00
2.35.1
2021-07-21 18:31:16 +00:00