22 lines
655 B
Text
22 lines
655 B
Text
Index: content/common/BUILD.gn
|
|
--- content/common/BUILD.gn.orig
|
|
+++ content/common/BUILD.gn
|
|
@@ -433,6 +433,9 @@ if (is_linux || is_chromeos) {
|
|
public = [ "set_process_title_linux.h" ]
|
|
sources = [ "set_process_title_linux.cc" ]
|
|
deps = [ "//base" ]
|
|
+ if (is_bsd) {
|
|
+ sources -= [ "set_process_title_linux.cc" ]
|
|
+ }
|
|
}
|
|
}
|
|
|
|
@@ -478,7 +481,7 @@ mojom("mojo_bindings") {
|
|
if (enable_ipc_logging) {
|
|
enabled_features += [ "ipc_logging" ]
|
|
}
|
|
- if (is_linux || is_chromeos) {
|
|
+ if (!is_bsd && (is_linux || is_chromeos)) {
|
|
enabled_features += [ "supports_thread_types" ]
|
|
}
|
|
if (use_clang_profiling_inside_sandbox) {
|