blob: 53a6cac1f902959a8d173aed49d7c3620b52d8a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- chrome/common/BUILD.gn.orig 2021-09-24 04:26:00 UTC
+++ chrome/common/BUILD.gn
@@ -333,7 +333,7 @@ static_library("common") {
]
}
- if (!is_fuchsia) {
+ if (!is_fuchsia && !is_bsd) {
deps += [ "//components/crash/core/app" ]
}
@@ -493,13 +493,21 @@ static_library("common") {
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",
"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) {
|