diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2020-12-01 04:06:37 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2020-12-01 04:06:37 +0000 |
commit | a0dbfe2fb016ec18b858d0857d8c3ce21662d29c (patch) | |
tree | 0454226a8e0acc85a44cfa5e09502134947dbdef /www/chromium/files/patch-chrome_common_BUILD.gn | |
parent | games/iqpuzzle: Update 1.2.0 -> 1.2.1 (diff) |
www/chromium: Update to version 87.0.4280.66
Submitted by: Matthias Wolf, cem, rene
Obtained from: Some patches from OpenBSD port (robert@openbsd.org)
Notes
Notes:
svn path=/head/; revision=556709
Diffstat (limited to 'www/chromium/files/patch-chrome_common_BUILD.gn')
-rw-r--r-- | www/chromium/files/patch-chrome_common_BUILD.gn | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/www/chromium/files/patch-chrome_common_BUILD.gn b/www/chromium/files/patch-chrome_common_BUILD.gn index fb6978347931..5019b7a909c9 100644 --- a/www/chromium/files/patch-chrome_common_BUILD.gn +++ b/www/chromium/files/patch-chrome_common_BUILD.gn @@ -1,14 +1,37 @@ ---- chrome/common/BUILD.gn.orig 2020-09-08 19:14:01 UTC +--- chrome/common/BUILD.gn.orig 2020-11-13 06:36:38 UTC +++ chrome/common/BUILD.gn -@@ -271,6 +271,11 @@ static_library("common") { +@@ -250,6 +250,10 @@ public_deps += [ "//ppapi/shared_impl" ] } + if (is_bsd) { -+ sources -= [ "component_flash_hint_file_linux.cc" ] + deps -= [ "//components/crash/core/app" ] + } + if (enable_extensions) { sources += [ "cast_messages.cc", +@@ -487,7 +491,7 @@ + public_deps += [ "//chrome/common/safe_browsing" ] + } + +- if (is_linux || is_chromeos) { ++ if ((is_linux || is_chromeos) && !is_bsd) { + sources += [ + "auto_start_linux.cc", + "auto_start_linux.h", +@@ -496,6 +500,14 @@ + "multi_process_lock_linux.cc", + ] + deps += [ "//sandbox/linux:sandbox_services" ] ++ } ++ ++ if (is_bsd) { ++ sources += [ ++ "auto_start_linux.cc", ++ "auto_start_linux.h", ++ "multi_process_lock_linux.cc", ++ ] + } + + if (enable_cdm_host_verification) { |