2021-10-29 15:07:29 +00:00
|
|
|
From 67b6ede8c7b82dfddc53b945945a5d4c9e2ad9c3 Mon Sep 17 00:00:00 2001
|
2021-03-07 23:21:58 +00:00
|
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
Date: Tue, 2 Feb 2021 13:58:59 -0700
|
2021-10-29 15:07:29 +00:00
|
|
|
Subject: [PATCH 4/4] Run blink bindings generation single threaded
|
2021-03-07 23:21:58 +00:00
|
|
|
|
|
|
|
When not single threaded this process will eat all the RAM.
|
|
|
|
---
|
|
|
|
chromium/third_party/blink/renderer/bindings/BUILD.gn | 1 +
|
|
|
|
1 file changed, 1 insertion(+)
|
|
|
|
|
|
|
|
diff --git a/chromium/third_party/blink/renderer/bindings/BUILD.gn b/chromium/third_party/blink/renderer/bindings/BUILD.gn
|
|
|
|
index 6a457ced15a..09f1250d173 100644
|
|
|
|
--- a/chromium/third_party/blink/renderer/bindings/BUILD.gn
|
|
|
|
+++ b/chromium/third_party/blink/renderer/bindings/BUILD.gn
|
|
|
|
@@ -181,6 +181,7 @@ template("generate_bindings") {
|
|
|
|
outputs = invoker.outputs
|
|
|
|
|
|
|
|
args = [
|
|
|
|
+ "--single_process",
|
|
|
|
"--web_idl_database",
|
|
|
|
rebase_path(web_idl_database, root_build_dir),
|
|
|
|
"--root_src_dir",
|
|
|
|
--
|
2021-10-17 19:47:38 +00:00
|
|
|
2.33.0
|
2021-03-07 23:21:58 +00:00
|
|
|
|