aboutsummaryrefslogtreecommitdiff
path: root/deps/node/deps/nghttp2/nghttp2.gyp
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-04-03 15:43:32 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-04-03 15:45:57 +0200
commit71e285b94c7edaa43aa8115965cf5a36b8e0f80a (patch)
tree7d4aa9d0d5aff686b106cd5da72ba77960c4af43 /deps/node/deps/nghttp2/nghttp2.gyp
parent7dadf9356b4f3f4137ce982ea5bb960283116e9a (diff)
downloadakono-71e285b94c7edaa43aa8115965cf5a36b8e0f80a.tar.gz
akono-71e285b94c7edaa43aa8115965cf5a36b8e0f80a.tar.bz2
akono-71e285b94c7edaa43aa8115965cf5a36b8e0f80a.zip
Node.js v11.13.0
Diffstat (limited to 'deps/node/deps/nghttp2/nghttp2.gyp')
-rw-r--r--deps/node/deps/nghttp2/nghttp2.gyp63
1 files changed, 63 insertions, 0 deletions
diff --git a/deps/node/deps/nghttp2/nghttp2.gyp b/deps/node/deps/nghttp2/nghttp2.gyp
new file mode 100644
index 00000000..8da81485
--- /dev/null
+++ b/deps/node/deps/nghttp2/nghttp2.gyp
@@ -0,0 +1,63 @@
+{
+ 'target_defaults': {
+ 'defines': [
+ '_U_='
+ ]
+ },
+ 'targets': [
+ {
+ 'target_name': 'nghttp2',
+ 'type': 'static_library',
+ 'include_dirs': ['lib/includes'],
+ 'defines': [
+ 'BUILDING_NGHTTP2',
+ 'NGHTTP2_STATICLIB',
+ ],
+ 'conditions': [
+ ['OS=="win"', {
+ 'defines': [
+ 'WIN32',
+ '_WINDOWS',
+ 'HAVE_CONFIG_H',
+ ],
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'CompileAs': '1'
+ },
+ },
+ }],
+ ['debug_nghttp2 == 1', {
+ 'defines': [ 'DEBUGBUILD=1' ]
+ }]
+ ],
+ 'direct_dependent_settings': {
+ 'defines': [ 'NGHTTP2_STATICLIB' ],
+ 'include_dirs': [ 'lib/includes' ]
+ },
+ 'sources': [
+ 'lib/nghttp2_buf.c',
+ 'lib/nghttp2_callbacks.c',
+ 'lib/nghttp2_debug.c',
+ 'lib/nghttp2_frame.c',
+ 'lib/nghttp2_hd.c',
+ 'lib/nghttp2_hd_huffman.c',
+ 'lib/nghttp2_hd_huffman_data.c',
+ 'lib/nghttp2_helper.c',
+ 'lib/nghttp2_http.c',
+ 'lib/nghttp2_map.c',
+ 'lib/nghttp2_mem.c',
+ 'lib/nghttp2_npn.c',
+ 'lib/nghttp2_option.c',
+ 'lib/nghttp2_outbound_item.c',
+ 'lib/nghttp2_pq.c',
+ 'lib/nghttp2_priority_spec.c',
+ 'lib/nghttp2_queue.c',
+ 'lib/nghttp2_rcbuf.c',
+ 'lib/nghttp2_session.c',
+ 'lib/nghttp2_stream.c',
+ 'lib/nghttp2_submit.c',
+ 'lib/nghttp2_version.c'
+ ]
+ }
+ ]
+}