aboutsummaryrefslogtreecommitdiff
path: root/devel/electron12/files/patch-net_BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron12/files/patch-net_BUILD.gn')
-rw-r--r--devel/electron12/files/patch-net_BUILD.gn55
1 files changed, 0 insertions, 55 deletions
diff --git a/devel/electron12/files/patch-net_BUILD.gn b/devel/electron12/files/patch-net_BUILD.gn
deleted file mode 100644
index 4495600775dd..000000000000
--- a/devel/electron12/files/patch-net_BUILD.gn
+++ /dev/null
@@ -1,55 +0,0 @@
---- net/BUILD.gn.orig 2021-04-14 01:08:52 UTC
-+++ net/BUILD.gn
-@@ -100,7 +100,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" ]
- }
-
-@@ -1252,6 +1252,16 @@ component("net") {
- ]
- }
-
-+ if (is_bsd) {
-+ sources -= [
-+ "base/address_tracker_linux.cc",
-+ "base/address_tracker_linux.h",
-+ "base/network_change_notifier_linux.cc",
-+ "base/network_change_notifier_linux.h",
-+ "base/network_interfaces_linux.cc"
-+ ]
-+ }
-+
- if (is_mac) {
- sources += [
- "base/network_notification_thread_mac.cc",
-@@ -1388,7 +1398,7 @@ component("net") {
- }
- }
-
-- if (is_android || is_chromeos_ash) {
-+ if (is_android || is_chromeos_ash || is_bsd) {
- sources += [
- "base/network_change_notifier_posix.cc",
- "base/network_change_notifier_posix.h",
-@@ -1421,7 +1431,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",
-@@ -4755,7 +4765,7 @@ test("net_unittests") {
- }
-
- # Use getifaddrs() on POSIX platforms, except Linux and Android.
-- if (is_posix && !is_linux && !is_chromeos && !is_android) {
-+ if ((is_posix && !is_linux && !is_chromeos && !is_android) || is_bsd) {
- sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ]
- }
-