Skip to content

Commit f57dabe

Browse files
committed
build: move source files from headers section
Currently, the sources list contains sources and headers which are separated by a comment. I noticed two .cc files after the headers comment and this commit moves those files the start of the list where the rest of source files are. PR-URL: nodejs#10850 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
1 parent 684590f commit f57dabe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

node.gyp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,15 @@
181181
'src/signal_wrap.cc',
182182
'src/spawn_sync.cc',
183183
'src/string_bytes.cc',
184+
'src/string_search.cc',
184185
'src/stream_base.cc',
185186
'src/stream_wrap.cc',
186187
'src/tcp_wrap.cc',
187188
'src/timer_wrap.cc',
188189
'src/tty_wrap.cc',
189190
'src/process_wrap.cc',
190191
'src/udp_wrap.cc',
192+
'src/util.cc',
191193
'src/uv.cc',
192194
# headers to make for a more pleasant IDE experience
193195
'src/async-wrap.h',
@@ -233,8 +235,6 @@
233235
'src/tree.h',
234236
'src/util.h',
235237
'src/util-inl.h',
236-
'src/util.cc',
237-
'src/string_search.cc',
238238
'deps/http_parser/http_parser.h',
239239
'deps/v8/include/v8.h',
240240
'deps/v8/include/v8-debug.h',

0 commit comments

Comments
 (0)