diff options
author | Daniel Bevenius <daniel.bevenius@gmail.com> | 2017-01-17 07:51:25 +0100 |
---|---|---|
committer | Myles Borins <myles.borins@gmail.com> | 2017-03-08 17:11:04 -0800 |
commit | 2d31fd8bf7fbb2e57d804934204f3e8a4c888e29 (patch) | |
tree | 9ba7949fb301bd362135f7bd70d4a83f8e999e46 /node.gyp | |
parent | bde1a7e09e5c41132b69acbb2927e676b28aacf4 (diff) | |
download | node-new-2d31fd8bf7fbb2e57d804934204f3e8a4c888e29.tar.gz |
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.gyp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -167,6 +167,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', @@ -174,6 +175,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', @@ -214,8 +216,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', |