diff options
author | Robert Nagy <rnagy@FreeBSD.org> | 2025-04-05 15:55:25 +0200 |
---|---|---|
committer | Robert Nagy <rnagy@FreeBSD.org> | 2025-04-05 15:58:02 +0200 |
commit | 3e24dfa4880971dc2cd609b8a0ce07f7862a7327 (patch) | |
tree | 483a3ee7162462323325bfb94b4122245b26297d /www/chromium/files/patch-components_BUILD.gn | |
parent | security/vuxml: add www/*chromium < 135.0.7049.52 (diff) |
www/chromium: update to 135.0.7049.52
Security: https://vuxml.freebsd.org/freebsd/789bcfb6-1224-11f0-85f3-a8a1599412c6.html
Diffstat (limited to 'www/chromium/files/patch-components_BUILD.gn')
-rw-r--r-- | www/chromium/files/patch-components_BUILD.gn | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/www/chromium/files/patch-components_BUILD.gn b/www/chromium/files/patch-components_BUILD.gn new file mode 100644 index 000000000000..5e64daa75c5f --- /dev/null +++ b/www/chromium/files/patch-components_BUILD.gn @@ -0,0 +1,28 @@ +--- components/BUILD.gn.orig 2025-04-04 08:52:13 UTC ++++ components/BUILD.gn +@@ -208,7 +208,6 @@ test("components_unittests") { + "//components/content_settings/core/browser:unit_tests", + "//components/content_settings/core/common:unit_tests", + "//components/country_codes:unit_tests", +- "//components/crash/core/common:unit_tests", + "//components/cross_device/logging:unit_tests", + "//components/crx_file:unit_tests", + "//components/data_sharing:unit_tests", +@@ -607,7 +606,7 @@ test("components_unittests") { + deps += [ "//components/cast:unit_tests" ] + } + +- if (!is_fuchsia) { #!iOS and!Fuchsia ++ if (!is_fuchsia && !is_bsd) { #!iOS and!Fuchsia + deps += [ + "//components/crash/content/browser:unit_tests", + "//components/crash/core/app:unit_tests", +@@ -765,7 +764,7 @@ test("components_unittests") { + deps += [ "//components/constrained_window:unit_tests" ] + } + +- if (is_win || is_linux || is_chromeos || is_mac) { ++ if (is_win || (is_linux && !is_bsd) || is_chromeos || is_mac) { + deps += [ "//components/stability_report:unit_tests" ] + } + |