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

nghttp3.gyp « nghttp3 « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3421ba7cf60b159220a7ccb37a54ebcf88c436b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
  'target_defaults': {
    'defines': [
      '_U_='
    ]
  },
  'targets': [
    {
      'target_name': 'nghttp3',
      'type': 'static_library',
      'include_dirs': ['lib/includes'],
      'defines': [
        'BUILDING_NGHTTP3',
        'NGHTTP3_STATICLIB',
      ],
      'conditions': [
        ['OS=="win"', {
          'defines': [
            'WIN32',
            '_WINDOWS',
            'HAVE_CONFIG_H',
          ],
          'msvs_settings': {
            'VCCLCompilerTool': {
              'CompileAs': '1'
            },
          },
        }],
      ],
      'direct_dependent_settings': {
        'defines': [ 'NGHTTP3_STATICLIB' ],
        'include_dirs': [ 'lib/includes' ]
      },
      'sources': [
  'lib/nghttp3_buf.c',
  'lib/nghttp3_conv.c',
  'lib/nghttp3_err.c',
  'lib/nghttp3_gaptr.c',
  'lib/nghttp3_idtr.c',
  'lib/nghttp3_map.c',
  'lib/nghttp3_pq.c',
  'lib/nghttp3_qpack_huffman.c',
  'lib/nghttp3_range.c',
  'lib/nghttp3_ringbuf.c',
  'lib/nghttp3_stream.c',
  'lib/nghttp3_vec.c',
  'lib/nghttp3_conn.c',
  'lib/nghttp3_debug.c',
  'lib/nghttp3_frame.c',
  'lib/nghttp3_http.c',
  'lib/nghttp3_ksl.c',
  'lib/nghttp3_mem.c',
  'lib/nghttp3_qpack.c',
  'lib/nghttp3_qpack_huffman_data.c',
  'lib/nghttp3_rcbuf.c',
  'lib/nghttp3_str.c',
  'lib/nghttp3_tnode.c',
  'lib/nghttp3_version.c'
      ]
    }
  ]
}