blob: b685c32d3edea79275f66f6251377b94836fc736 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- chrome/browser/ui/BUILD.gn.orig 2020-05-13 18:40:23 UTC
+++ chrome/browser/ui/BUILD.gn
@@ -630,12 +630,15 @@ jumbo_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) {
+ deps += [ "//components/crash/core/browser" ]
}
if (is_win || is_android || is_linux) {
|