blob: d7b2a29120f533f48fc1fb7b0826b9ce81067af0 (
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-12-31 00:57:25 UTC
+++ chrome/common/BUILD.gn
@@ -329,7 +329,7 @@ static_library("common") {
]
}
- if (!is_fuchsia) {
+ if (!is_fuchsia && !is_bsd) {
deps += [ "//components/crash/core/app" ]
}
@@ -490,13 +490,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) {
|