mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 21:50:32 -04:00
36 lines
914 B
Text
36 lines
914 B
Text
--- chrome/common/BUILD.gn.orig 2021-07-15 19:13:34 UTC
|
|
+++ chrome/common/BUILD.gn
|
|
@@ -253,6 +253,10 @@ static_library("common") {
|
|
public_deps += [ "//ppapi/shared_impl" ]
|
|
}
|
|
|
|
+ if (is_bsd) {
|
|
+ deps -= [ "//components/crash/core/app" ]
|
|
+ }
|
|
+
|
|
if (enable_extensions) {
|
|
sources += [
|
|
"extensions/api/commands/commands_handler.cc",
|
|
@@ -480,13 +484,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) {
|