Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-01-17 09:51:25 +0300
committerDaniel Bevenius <daniel.bevenius@gmail.com>2017-01-18 10:22:31 +0300
commitf57dabe41259a239b143187256537c0a010e3ac1 (patch)
treeb3f0bb8a78b061916d9f1b5110cff9268b1b5f79 /node.gyp
parent684590fd7ada3891c9942f5de91aa442d904169f (diff)
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: https://github.com/nodejs/node/pull/10850 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp4
1 files changed, 2 insertions, 2 deletions
diff --git a/node.gyp b/node.gyp
index 5139d0b838b..f7d0ade0b36 100644
--- a/node.gyp
+++ b/node.gyp
@@ -181,6 +181,7 @@
'src/signal_wrap.cc',
'src/spawn_sync.cc',
'src/string_bytes.cc',
+ 'src/string_search.cc',
'src/stream_base.cc',
'src/stream_wrap.cc',
'src/tcp_wrap.cc',
@@ -188,6 +189,7 @@
'src/tty_wrap.cc',
'src/process_wrap.cc',
'src/udp_wrap.cc',
+ 'src/util.cc',
'src/uv.cc',
# headers to make for a more pleasant IDE experience
'src/async-wrap.h',
@@ -233,8 +235,6 @@
'src/tree.h',
'src/util.h',
'src/util-inl.h',
- 'src/util.cc',
- 'src/string_search.cc',
'deps/http_parser/http_parser.h',
'deps/v8/include/v8.h',
'deps/v8/include/v8-debug.h',