blob: 53de5d05b67ef668eb2fd9e520e7edce233ba007 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- components/crash/content/app/BUILD.gn.orig 2019-07-24 18:58:18 UTC
+++ components/crash/content/app/BUILD.gn
@@ -37,7 +37,7 @@ static_library("app") {
sources += [ "crashpad.cc" ]
}
- if (is_linux) {
+ if (is_linux && !is_bsd) {
sources += [
"breakpad_linux.cc",
"breakpad_linux.h",
@@ -78,7 +78,7 @@ static_library("app") {
"//sandbox",
]
- if (is_linux) {
+ if (is_linux && !is_bsd) {
deps += [ "//third_party/breakpad:client" ]
}
}
|