@@ -928,10 +928,10 @@ index 0000000000000000000000000000000000000000..bfbd4e656db1a6c73048443f96f1d576
928
928
+ }
929
929
diff --git a/deps/uv/BUILD.gn b/deps/uv/BUILD.gn
930
930
new file mode 100644
931
- index 0000000000000000000000000000000000000000..29e66144dbb67704bad0d78c4b3f5713537c7987
931
+ index 0000000000000000000000000000000000000000..7518168141db7958550c7f5dc1ed17ccdbbe4a60
932
932
--- /dev/null
933
933
+++ b/deps/uv/BUILD.gn
934
- @@ -0,0 +1,197 @@
934
+ @@ -0,0 +1,194 @@
935
935
+ config("libuv_config") {
936
936
+ include_dirs = [ "include" ]
937
937
+
@@ -989,9 +989,9 @@ index 0000000000000000000000000000000000000000..29e66144dbb67704bad0d78c4b3f5713
989
989
+
990
990
+ sources = [
991
991
+ "include/uv.h",
992
+ + "include/uv/tree.h",
992
993
+ "include/uv/errno.h",
993
994
+ "include/uv/threadpool.h",
994
- + "include/uv/tree.h",
995
995
+ "include/uv/version.h",
996
996
+ "src/fs-poll.c",
997
997
+ "src/heap-inl.h",
@@ -1004,11 +1004,12 @@ index 0000000000000000000000000000000000000000..29e66144dbb67704bad0d78c4b3f5713
1004
1004
+ "src/strscpy.h",
1005
1005
+ "src/strtok.c",
1006
1006
+ "src/strtok.h",
1007
+ + "src/thread-common.c",
1007
1008
+ "src/threadpool.c",
1008
1009
+ "src/timer.c",
1010
+ + "src/uv-data-getter-setters.c",
1009
1011
+ "src/uv-common.c",
1010
1012
+ "src/uv-common.h",
1011
- + "src/uv-data-getter-setters.c",
1012
1013
+ "src/version.c",
1013
1014
+ ]
1014
1015
+
@@ -1022,25 +1023,25 @@ index 0000000000000000000000000000000000000000..29e66144dbb67704bad0d78c4b3f5713
1022
1023
+ "src/win/detect-wakeup.c",
1023
1024
+ "src/win/dl.c",
1024
1025
+ "src/win/error.c",
1025
- + "src/win/fs-event.c",
1026
1026
+ "src/win/fs.c",
1027
+ + "src/win/fs-event.c",
1027
1028
+ "src/win/getaddrinfo.c",
1028
1029
+ "src/win/getnameinfo.c",
1029
- + "src/win/handle-inl.h",
1030
1030
+ "src/win/handle.c",
1031
+ + "src/win/handle-inl.h",
1031
1032
+ "src/win/internal.h",
1032
1033
+ "src/win/loop-watcher.c",
1033
1034
+ "src/win/pipe.c",
1035
+ + "src/win/thread.c",
1034
1036
+ "src/win/poll.c",
1035
- + "src/win/process-stdio.c",
1036
1037
+ "src/win/process.c",
1038
+ + "src/win/process-stdio.c",
1037
1039
+ "src/win/req-inl.h",
1038
1040
+ "src/win/signal.c",
1039
1041
+ "src/win/snprintf.c",
1040
- + "src/win/stream-inl.h",
1041
1042
+ "src/win/stream.c",
1043
+ + "src/win/stream-inl.h",
1042
1044
+ "src/win/tcp.c",
1043
- + "src/win/thread.c",
1044
1045
+ "src/win/tty.c",
1045
1046
+ "src/win/udp.c",
1046
1047
+ "src/win/util.c",
@@ -1049,6 +1050,7 @@ index 0000000000000000000000000000000000000000..29e66144dbb67704bad0d78c4b3f5713
1049
1050
+ "src/win/winsock.c",
1050
1051
+ "src/win/winsock.h",
1051
1052
+ ]
1053
+ +
1052
1054
+ libs += [
1053
1055
+ "advapi32.lib",
1054
1056
+ "iphlpapi.lib",
@@ -1060,27 +1062,26 @@ index 0000000000000000000000000000000000000000..29e66144dbb67704bad0d78c4b3f5713
1060
1062
+ ]
1061
1063
+ } else {
1062
1064
+ sources += [
1063
- + "include/uv/aix.h",
1064
- + "include/uv/bsd.h",
1065
- + "include/uv/darwin.h",
1065
+ + "include/uv/unix.h",
1066
1066
+ "include/uv/linux.h",
1067
1067
+ "include/uv/sunos.h",
1068
- + "include/uv/unix.h",
1068
+ + "include/uv/darwin.h",
1069
+ + "include/uv/bsd.h",
1070
+ + "include/uv/aix.h",
1069
1071
+ "src/unix/async.c",
1070
1072
+ "src/unix/core.c",
1071
1073
+ "src/unix/dl.c",
1072
1074
+ "src/unix/fs.c",
1073
1075
+ "src/unix/getaddrinfo.c",
1074
1076
+ "src/unix/getnameinfo.c",
1075
1077
+ "src/unix/internal.h",
1076
- + "src/unix/loop-watcher.c",
1077
1078
+ "src/unix/loop.c",
1079
+ + "src/unix/loop-watcher.c",
1078
1080
+ "src/unix/pipe.c",
1079
1081
+ "src/unix/poll.c",
1080
1082
+ "src/unix/process.c",
1081
1083
+ "src/unix/random-devurandom.c",
1082
1084
+ "src/unix/signal.c",
1083
- + "src/unix/spinlock.h",
1084
1085
+ "src/unix/stream.c",
1085
1086
+ "src/unix/tcp.c",
1086
1087
+ "src/unix/thread.c",
@@ -1108,11 +1109,7 @@ index 0000000000000000000000000000000000000000..29e66144dbb67704bad0d78c4b3f5713
1108
1109
+ if (is_linux) {
1109
1110
+ defines += [ "_GNU_SOURCE" ]
1110
1111
+ sources += [
1111
- + "src/unix/epoll.c",
1112
- + "src/unix/linux-core.c",
1113
- + "src/unix/linux-inotify.c",
1114
- + "src/unix/linux-syscalls.c",
1115
- + "src/unix/linux-syscalls.h",
1112
+ + "src/unix/linux.c",
1116
1113
+ "src/unix/procfs-exepath.c",
1117
1114
+ "src/unix/random-getrandom.c",
1118
1115
+ "src/unix/random-sysctl-linux.c",
0 commit comments