ports/www/chromium/patches/patch-content_test_BUILD_gn

22 lines
669 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: content/test/BUILD.gn
--- content/test/BUILD.gn.orig
+++ content/test/BUILD.gn
2023-09-14 00:49:35 +00:00
@@ -2217,7 +2217,7 @@ static_library("run_all_unittests") {
2023-08-16 22:26:55 +00:00
":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" ]
}
}
2023-09-14 00:49:35 +00:00
@@ -3288,7 +3288,7 @@ test("content_unittests") {
2023-08-16 22:26:55 +00:00
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" ]
}