From 8c6eeeefb57ab40bb62f94e026cfaaf01c710ce9 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 6 Nov 2018 12:17:05 +0100 Subject: [PATCH] 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. --- node.gyp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node.gyp b/node.gyp index 5a42d2b7149b78..36d19b13f0b5fe 100644 --- a/node.gyp +++ b/node.gyp @@ -336,15 +336,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', @@ -403,10 +400,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',