From 5ab410223371f44786f138f8f3419ba3b161c531 Mon Sep 17 00:00:00 2001 From: Christoffer Jansson Date: Thu, 24 Mar 2022 14:14:53 +0100 Subject: [PATCH] Exclude partition_allocator header check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will unblock the roll Bug: b/226557854 Change-Id: I7f5c5b6385e91bf55c5c39fa63ebb8b55c639734 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/256681 Reviewed-by: Björn Terelius Reviewed-by: Mirko Bonadei Commit-Queue: Christoffer Jansson Cr-Commit-Position: refs/heads/main@{#36319} --- .gn | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gn b/.gn index ea58dc547c..75872e3864 100644 --- a/.gn +++ b/.gn @@ -24,7 +24,12 @@ secondary_source = "//build/secondary/" # matching these patterns (see "gn help label_pattern" for format) will not have # their includes checked for proper dependencies when you run either # "gn check" or "gn gen --check". -no_check_targets = [ "//third_party/icu/*" ] +no_check_targets = [ + "//third_party/icu/*", + + # TODO(crbug.com/1151236) Remove once fixed. + "//base/allocator/partition_allocator:partition_alloc", +] # These are the list of GN files that run exec_script. This whitelist exists # to force additional review for new uses of exec_script, which is strongly