diff options
author | Matthias Wolf <matthias@rheinwolf.de> | 2021-04-27 16:25:26 +0200 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2021-04-27 16:29:47 +0200 |
commit | be6259aac7b38bb3129be18e4ca60d42078cca3e (patch) | |
tree | c751b3c98ce06f6217fb44fc88ad582a05327926 /www/chromium/files/patch-chrome_browser_BUILD.gn | |
parent | benchmarks/dbs: extend BROKENness to FreeBSD 14 (diff) |
www/chromium: update to 90.0.4430.85
Tested by: Matthias Wolf, rene
MFH: 2021Q2
Security: http://vuxml.freebsd.org/freebsd/cb13a765-a277-11eb-97a0-e09467587c17.html
Diffstat (limited to 'www/chromium/files/patch-chrome_browser_BUILD.gn')
-rw-r--r-- | www/chromium/files/patch-chrome_browser_BUILD.gn | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/www/chromium/files/patch-chrome_browser_BUILD.gn b/www/chromium/files/patch-chrome_browser_BUILD.gn index 5cf14a0f2114..224e5620b074 100644 --- a/www/chromium/files/patch-chrome_browser_BUILD.gn +++ b/www/chromium/files/patch-chrome_browser_BUILD.gn @@ -1,6 +1,44 @@ ---- chrome/browser/BUILD.gn.orig 2021-03-12 23:57:17 UTC +--- chrome/browser/BUILD.gn.orig 2021-04-20 18:58:25 UTC +++ chrome/browser/BUILD.gn -@@ -5277,7 +5277,7 @@ static_library("browser") { +@@ -2458,9 +2458,18 @@ static_library("browser") { + ] + } + } +- if (is_linux || is_chromeos) { ++ if ((is_linux || is_chromeos) && !is_bsd) { + deps += [ "//chrome/browser/error_reporting" ] + } ++ if (is_bsd) { ++ sources -= [ ++ "crash_upload_list/crash_upload_list.cc", ++ "crash_upload_list/crash_upload_list.h", ++ ] ++ deps -= [ ++ "//components/crash/core/browser", ++ ] ++ } + if (use_ozone) { + deps += [ + "//ui/events/ozone", +@@ -5123,6 +5132,17 @@ static_library("browser") { + } + } + ++ if (is_bsd) { ++ sources -= [ ++ "enterprise/signals/device_info_fetcher_linux.cc", ++ "enterprise/signals/device_info_fetcher_linux.h", ++ ] ++ sources += [ ++ "enterprise/signals/device_info_fetcher_freebsd.cc", ++ "enterprise/signals/device_info_fetcher_freebsd.h", ++ ] ++ } ++ + if (is_chromeos_ash) { + if (use_allocator == "tcmalloc") { + deps += [ "//chrome/common/performance_manager/mojom" ] +@@ -5350,7 +5370,7 @@ static_library("browser") { ] } |