2023-08-16 22:26:55 +00:00
|
|
|
Index: content/common/BUILD.gn
|
|
|
|
--- content/common/BUILD.gn.orig
|
|
|
|
+++ content/common/BUILD.gn
|
2023-08-18 18:38:43 +00:00
|
|
|
@@ -434,6 +434,9 @@ if (is_linux || is_chromeos) {
|
2023-08-16 22:26:55 +00:00
|
|
|
public = [ "set_process_title_linux.h" ]
|
|
|
|
sources = [ "set_process_title_linux.cc" ]
|
|
|
|
deps = [ "//base" ]
|
|
|
|
+ if (is_bsd) {
|
|
|
|
+ sources -= [ "set_process_title_linux.cc" ]
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-18 18:38:43 +00:00
|
|
|
@@ -479,7 +482,7 @@ mojom("mojo_bindings") {
|
2023-08-16 22:26:55 +00:00
|
|
|
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) {
|