• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  'targets': [
3    {
4      'target_name': 'testsetengine',
5      'type': 'none',
6      'includes': ['../common.gypi'],
7      'conditions': [
8        ['(OS=="mac" or OS=="linux") and '
9         'node_use_openssl=="true" and '
10         'node_shared=="false" and '
11         'node_shared_openssl=="false"', {
12          'type': 'shared_library',
13          'sources': [ 'testsetengine.cc' ],
14          'product_extension': 'engine',
15          'include_dirs': ['../../../deps/openssl/openssl/include'],
16          'conditions': [
17            ['OS=="mac"', {
18              'xcode_settings': {
19                'OTHER_CFLAGS': ['-Wno-deprecated-declarations'],
20              },
21              'link_settings': {
22                'libraries': [
23                  '../../../../out/<(PRODUCT_DIR)/<(openssl_product)'
24                ]
25              },
26            }],
27            ['OS=="linux"', {
28              'cflags': [
29                '-Wno-deprecated-declarations',
30              ],
31            }],
32          ],
33        }],
34      ],
35    }
36  ]
37}
38