summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2018-11-06 12:17:05 +0100
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-11-09 05:51:56 +0100
commit9e82fd26aaa87cbae8af8ae007a0ceb082ad10ad (patch)
tree13ed4274a543c66208dcc817cacbb79c35f85718 /node.gyp
parent5c201b6d477525a080b11d1bd49a7c94fe81f8ac (diff)
downloadandroid-node-v8-9e82fd26aaa87cbae8af8ae007a0ceb082ad10ad.tar.gz
android-node-v8-9e82fd26aaa87cbae8af8ae007a0ceb082ad10ad.tar.bz2
android-node-v8-9e82fd26aaa87cbae8af8ae007a0ceb082ad10ad.zip
build: move headers out of c++ src section
This commit moves a few header files that are listed among the C++ source files for consistency. PR-URL: https://github.com/nodejs/node/pull/24124 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Matheus Marchini <mat@mmarchini.me>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp6
1 files changed, 3 insertions, 3 deletions
diff --git a/node.gyp b/node.gyp
index 1b675458d7..cdea08bbbc 100644
--- a/node.gyp
+++ b/node.gyp
@@ -337,15 +337,12 @@
'src/module_wrap.cc',
'src/node.cc',
'src/node_api.cc',
- 'src/node_api.h',
- 'src/node_api_types.h',
'src/node_buffer.cc',
'src/node_config.cc',
'src/node_constants.cc',
'src/node_contextify.cc',
'src/node_domain.cc',
'src/node_encoding.cc',
- 'src/node_errors.h',
'src/node_errors.cc',
'src/node_file.cc',
'src/node_http2.cc',
@@ -404,10 +401,13 @@
'src/js_stream.h',
'src/module_wrap.h',
'src/node.h',
+ 'src/node_api.h',
+ 'src/node_api_types.h',
'src/node_buffer.h',
'src/node_code_cache.h',
'src/node_constants.h',
'src/node_contextify.h',
+ 'src/node_errors.h',
'src/node_file.h',
'src/node_http2.h',
'src/node_http2_state.h',