diff options
Diffstat (limited to 'devel/electron13/files/patch-chrome_browser_ui_BUILD.gn')
-rw-r--r-- | devel/electron13/files/patch-chrome_browser_ui_BUILD.gn | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/devel/electron13/files/patch-chrome_browser_ui_BUILD.gn b/devel/electron13/files/patch-chrome_browser_ui_BUILD.gn new file mode 100644 index 000000000000..c7a264aa52f0 --- /dev/null +++ b/devel/electron13/files/patch-chrome_browser_ui_BUILD.gn @@ -0,0 +1,22 @@ +--- chrome/browser/ui/BUILD.gn.orig 2021-07-15 19:13:34 UTC ++++ chrome/browser/ui/BUILD.gn +@@ -648,11 +648,18 @@ static_library("ui") { + deps += [ "//components/autofill/content/browser/webauthn" ] + } + +- if (!is_fuchsia) { ++ if (!is_fuchsia && !is_bsd) { + # TODO(crbug.com/753619): Enable crash reporting on Fuchsia. + deps += [ + "//components/crash/core/app", + "//components/crash/core/browser", ++ ] ++ } ++ ++ if (is_bsd) { ++ sources -= [ ++ "webui/crashes_ui.cc", ++ "webui/crashes_ui.h", + ] + } + |