From 1b7c18c93a6c07b761e256bfc80eb9a6c1280383 Mon Sep 17 00:00:00 2001 From: danakj Date: Tue, 25 Jul 2023 22:36:58 +0000 Subject: [PATCH] Crash Chrome with Rust Again MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Oops, I did it again. When I removed the last platform condition, the enable_rust_crash became gated on enable_all_rust_features, but that was only meant to override the disabled platforms. Bug: 1457505, 1368726 Change-Id: I774116d118eef6c5429149205e6fded1023a05a1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4718489 Auto-Submit: danakj Commit-Queue: danakj Reviewed-by: Łukasz Anforowicz Commit-Queue: Łukasz Anforowicz Cr-Commit-Position: refs/heads/main@{#1175121} --- build/config/rust.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/config/rust.gni b/build/config/rust.gni index c17fb9ab25676d..d25bb7ca3376bc 100644 --- a/build/config/rust.gni +++ b/build/config/rust.gni @@ -88,7 +88,7 @@ declare_args() { enable_rust_json = enable_rust && enable_all_rust_features # Support for chrome://crash-rust to check crash dump collection works. - enable_rust_crash = enable_rust && enable_all_rust_features + enable_rust_crash = enable_rust # Support for QR code generation - see https://crbug.com/1431991. #