From 4a0377f0b847af505915b0e0a6c4178d4e7c3244 Mon Sep 17 00:00:00 2001 From: Matt Jolly Date: Mon, 14 Apr 2025 20:16:46 -0700 Subject: [PATCH] Drop `remap_alloc` dep MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit e3a1797dbab3eaa1c808d53215b32c8759d27ac7 dropped the source set that this refers to, in favour of a more modern, crate-based solution. This seems to have been overlooked, possibly as it only appears to be called if using the unbundle toolchain. Bug: 408221149 Signed-off-by: Matt Jolly Change-Id: I1703d8e1e456161aa2b736169eec407235847099 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6456604 Reviewed-by: Andrew Grieve Reviewed-by: Lei Zhang Commit-Queue: Łukasz Anforowicz Reviewed-by: Łukasz Anforowicz Cr-Commit-Position: refs/heads/main@{#1446912} --- build/rust/std/BUILD.gn | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build/rust/std/BUILD.gn b/build/rust/std/BUILD.gn index 25db126076b2f..bb2c9884520b3 100644 --- a/build/rust/std/BUILD.gn +++ b/build/rust/std/BUILD.gn @@ -355,12 +355,6 @@ if (toolchain_has_rust) { ":stdlib_public_dependent_libs", ] deps = [ ":prebuilt_rustc_copy_to_sysroot" ] - - # The host builds tools toolchain supports Rust only and does not use - # the allocator remapping to point it to PartitionAlloc. - if (!toolchain_for_rust_host_build_tools) { - deps += [ ":remap_alloc" ] - } } } }