aboutsummaryrefslogtreecommitdiff
path: root/www/qt5-webengine/files/patch-src_3rdparty_chromium_content_test_BUILD.gn
blob: 5d6baa9d83a57b41a14835b9af52e63d9cb67eb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- src/3rdparty/chromium/content/test/BUILD.gn.orig	2021-12-15 16:12:54 UTC
+++ src/3rdparty/chromium/content/test/BUILD.gn
@@ -1398,10 +1398,12 @@ test("content_browsertests") {
   }
 
   if (is_linux || is_chromeos) {
-    sources += [
-      "../browser/utility_process_sandbox_browsertest.cc",
-      "../browser/zygote_host/zygote_browsertest.cc",
-    ]
+    if (!is_bsd) {
+      sources += [
+        "../browser/utility_process_sandbox_browsertest.cc",
+        "../browser/zygote_host/zygote_browsertest.cc",
+      ]
+    }
     deps += [
       "//services/service_manager/tests:interfaces",
       "//ui/gfx:test_support",
@@ -1655,7 +1657,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" ]
   }
 }