blob: 5316be72fe3009ce812347c6fcada2af7ccc25ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$OpenBSD: patch-content_test_BUILD_gn,v 1.15 2021/11/16 11:28:47 robert Exp $
Index: content/test/BUILD.gn
--- content/test/BUILD.gn.orig
+++ content/test/BUILD.gn
@@ -1864,7 +1864,7 @@ static_library("run_all_unittests") {
":test_support",
"//base/test:test_support",
]
- if (is_linux || is_chromeos) {
+ if ((is_linux || is_chromeos) && !is_openbsd) {
deps += [ "//content/common:set_process_title_linux" ]
}
}
@@ -2775,7 +2775,7 @@ test("content_unittests") {
deps += [ "//ui/gfx/x" ]
}
- if (is_linux || is_chromeos) {
+ if ((is_linux || is_chromeos) && !is_openbsd) {
sources += [ "../common/set_process_title_linux_unittest.cc" ]
deps += [ "//content/common:set_process_title_linux" ]
}
|