head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.06.08.13.12.32; author kikadf; state Exp; branches; next ; commitid Zzd0Bp9ZEsatPZIG; desc @@ 1.1 log @ www/chromium: update to 149.0.7827.53 * 149.0.7827.53 This update includes 429 security fixes. Below, we highlight fixes that were contributed by external researchers. Please see the Chrome Security Page for more information. * Fix build with wayland support: add missing include @ text @$NetBSD$ * Part of patchset to build chromium on NetBSD * Based on OpenBSD's chromium patches, and pkgsrc's qt5-qtwebengine patches --- chrome/browser/metrics/BUILD.gn.orig 2026-05-28 23:24:11.000000000 +0000 +++ chrome/browser/metrics/BUILD.gn @@@@ -197,7 +197,7 @@@@ source_set("metrics") { ] } - if (is_linux || is_chromeos) { + if (!is_bsd && (is_linux || is_chromeos)) { public += [ "bluetooth_metrics_provider.h" ] } @@@@ -208,7 +208,7 @@@@ source_set("metrics") { ] } - if (is_win || is_android || is_linux) { + if (!is_bsd && (is_win || is_android || is_linux)) { public += [ "chrome_metrics_service_crash_reporter.h" ] } @@@@ -456,7 +456,7 @@@@ source_set("impl") { sources += [ "structured/chrome_structured_metrics_delegate.cc" ] } - if (is_linux || is_chromeos) { + if (!is_bsd && (is_linux || is_chromeos)) { sources += [ "bluetooth_metrics_provider.cc" ] } @@@@ -471,7 +471,7 @@@@ source_set("impl") { deps += [ "//chrome/browser/updates:update_metrics" ] } - if (is_win || is_android || is_linux) { + if (!is_bsd && (is_win || is_android || is_linux)) { sources += [ "chrome_metrics_service_crash_reporter.cc" ] } @