Skip to content

Commit 974ecb0

Browse files
committed
build: sort sources alphabetically
The header files in the sources list are sorted alphabetically but not the c++ source code files. This commit sorts the c++ source code file names. PR-URL: #10892 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 98bb65f commit 974ecb0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

node.gyp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,17 +145,13 @@
145145
],
146146

147147
'sources': [
148-
'src/tracing/agent.cc',
149-
'src/tracing/node_trace_buffer.cc',
150-
'src/tracing/node_trace_writer.cc',
151-
'src/tracing/trace_event.cc',
152-
'src/debug-agent.cc',
153148
'src/async-wrap.cc',
154-
'src/env.cc',
155-
'src/fs_event_wrap.cc',
156149
'src/cares_wrap.cc',
157150
'src/connection_wrap.cc',
158151
'src/connect_wrap.cc',
152+
'src/debug-agent.cc',
153+
'src/env.cc',
154+
'src/fs_event_wrap.cc',
159155
'src/handle_wrap.cc',
160156
'src/js_stream.cc',
161157
'src/node.cc',
@@ -178,6 +174,7 @@
178174
'src/node_zlib.cc',
179175
'src/node_i18n.cc',
180176
'src/pipe_wrap.cc',
177+
'src/process_wrap.cc',
181178
'src/signal_wrap.cc',
182179
'src/spawn_sync.cc',
183180
'src/string_bytes.cc',
@@ -186,8 +183,11 @@
186183
'src/stream_wrap.cc',
187184
'src/tcp_wrap.cc',
188185
'src/timer_wrap.cc',
186+
'src/tracing/agent.cc',
187+
'src/tracing/node_trace_buffer.cc',
188+
'src/tracing/node_trace_writer.cc',
189+
'src/tracing/trace_event.cc',
189190
'src/tty_wrap.cc',
190-
'src/process_wrap.cc',
191191
'src/udp_wrap.cc',
192192
'src/util.cc',
193193
'src/uv.cc',

0 commit comments

Comments
 (0)