blob: 570ee60c99b3c02d98f2037b3525770eb5599e4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- services/network/BUILD.gn.orig 2021-09-24 04:26:09 UTC
+++ services/network/BUILD.gn
@@ -247,7 +247,7 @@ component("network_service") {
"//url",
]
- if (is_linux || is_chromeos) {
+ if ((is_linux || is_chromeos) && !is_bsd) {
deps += [ ":network_sandbox_hook" ]
}
@@ -287,7 +287,7 @@ component("network_service") {
defines = [ "IS_NETWORK_SERVICE_IMPL" ]
}
-if (is_linux || is_chromeos) {
+if ((is_linux || is_chromeos) && !is_bsd) {
source_set("network_sandbox_hook") {
sources = [
"network_sandbox_hook_linux.cc",
|