22 lines
669 B
Text
22 lines
669 B
Text
|
Index: content/test/BUILD.gn
|
||
|
--- content/test/BUILD.gn.orig
|
||
|
+++ content/test/BUILD.gn
|
||
|
@@ -2181,7 +2181,7 @@ static_library("run_all_unittests") {
|
||
|
":test_support",
|
||
|
"//base/test:test_support",
|
||
|
]
|
||
|
- if (is_linux || is_chromeos) {
|
||
|
+ if ((is_linux || is_chromeos) && !is_bsd) {
|
||
|
deps += [ "//content/common:set_process_title_linux" ]
|
||
|
}
|
||
|
}
|
||
|
@@ -3235,7 +3235,7 @@ test("content_unittests") {
|
||
|
deps += [ "//third_party/boringssl" ]
|
||
|
}
|
||
|
|
||
|
- if (is_linux || is_chromeos) {
|
||
|
+ if ((is_linux || is_chromeos) && !is_bsd) {
|
||
|
sources += [ "../common/set_process_title_linux_unittest.cc" ]
|
||
|
deps += [ "//content/common:set_process_title_linux" ]
|
||
|
}
|