diff options
Diffstat (limited to 'devel/electron33/files/patch-net_BUILD.gn')
-rw-r--r-- | devel/electron33/files/patch-net_BUILD.gn | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/devel/electron33/files/patch-net_BUILD.gn b/devel/electron33/files/patch-net_BUILD.gn deleted file mode 100644 index 88f9c368bc93..000000000000 --- a/devel/electron33/files/patch-net_BUILD.gn +++ /dev/null @@ -1,78 +0,0 @@ ---- net/BUILD.gn.orig 2024-10-16 21:31:35 UTC -+++ net/BUILD.gn -@@ -125,7 +125,7 @@ net_configs = [ - "//build/config/compiler:wexit_time_destructors", - ] - --if (is_linux || is_chromeos) { -+if ((is_linux || is_chromeos) && !is_bsd) { - net_configs += [ "//build/config/linux:libresolv" ] - } - -@@ -1277,6 +1277,19 @@ component("net") { - ] - } - -+ if (is_bsd) { -+ sources -= [ -+ "base/address_map_cache_linux.cc", -+ "base/address_map_cache_linux.h", -+ "base/address_map_linux.cc", -+ "base/address_map_linux.h", -+ "base/address_tracker_linux.cc", -+ "base/address_tracker_linux.h", -+ "base/network_change_notifier_linux.cc", -+ "base/network_interfaces_linux.cc", -+ ] -+ } -+ - if (is_mac) { - sources += [ - "base/network_notification_thread_mac.cc", -@@ -1438,7 +1451,7 @@ component("net") { - } - - # Use getifaddrs() on POSIX platforms, except Linux. -- if (is_posix && !is_linux && !is_chromeos) { -+ if ((is_posix && !is_linux && !is_chromeos) || is_bsd) { - sources += [ - "base/network_interfaces_getifaddrs.cc", - "base/network_interfaces_getifaddrs.h", -@@ -2921,7 +2934,7 @@ target(_test_target_type, "net_unittests") { - ] - } - -- if (is_linux || is_chromeos) { -+ if ((is_linux || is_chromeos) && !is_bsd) { - sources += [ - "base/address_tracker_linux_unittest.cc", - "base/network_interfaces_linux_unittest.cc", -@@ -3014,6 +3027,10 @@ target(_test_target_type, "net_unittests") { - ] - } - -+ if (is_bsd) { -+ deps += [ "//sandbox/policy" ] -+ } -+ - if (enable_websockets) { - sources += [ - "server/http_connection_unittest.cc", -@@ -3080,7 +3097,7 @@ target(_test_target_type, "net_unittests") { - ] - } - -- if (is_linux || is_chromeos) { -+ if ((is_linux || is_chromeos) && !is_bsd) { - sources += [ "tools/quic/quic_simple_server_test.cc" ] - } - -@@ -3219,7 +3236,7 @@ target(_test_target_type, "net_unittests") { - } - - # Use getifaddrs() on POSIX platforms, except Linux. -- if (is_posix && !is_linux && !is_chromeos) { -+ if (is_posix && !is_linux && !is_chromeos && !is_bsd) { - sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ] - } - |