blob: a433540af822f5e361b02706a499bd696ad0854d (
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
29
30
31
32
33
34
|
--- services/network/public/mojom/BUILD.gn.orig 2025-08-26 20:49:50 UTC
+++ services/network/public/mojom/BUILD.gn
@@ -690,11 +690,11 @@ mojom("url_loader_base") {
}
enabled_features = []
- if (is_android || is_chromeos || is_linux) {
+ if (!is_bsd && (is_android || is_chromeos || is_linux)) {
enabled_features += [ "network_change_notifier_in_browser" ]
}
- if (is_linux) {
+ if (is_linux && !is_bsd) {
# TODO(crbug.com/40263697): Remove this once is_linux in the mojom IDL does
# not include lacros.
enabled_features += [ "use_network_interface_change_listener" ]
@@ -1007,7 +1007,7 @@ mojom("url_loader_base") {
},
]
- if (is_linux) {
+ if (is_linux && !is_bsd) {
cpp_typemaps += [
{
types = [
@@ -1797,7 +1797,7 @@ mojom("mojom") {
}
}
- if (is_linux) {
+ if (is_linux && !is_bsd) {
# TODO(crbug.com/40263697): Remove this once is_linux in the mojom IDL does
# not include lacros.
enabled_features += [ "use_network_interface_change_listener" ]
|