1{
2  'targets': [
3    {
4      'target_name': 'testkeyengine',
5      'type': 'none',
6      'includes': ['../common.gypi'],
7      'conditions': [
8        ['OS=="mac" and '
9         'node_use_openssl=="true" and '
10         'node_shared=="false" and '
11         'node_shared_openssl=="false"', {
12          'type': 'shared_library',
13          'sources': [ 'testkeyengine.cc' ],
14          'product_extension': 'engine',
15          'include_dirs': ['../../../deps/openssl/openssl/include'],
16          'link_settings': {
17            'libraries': [
18              '../../../../out/<(PRODUCT_DIR)/<(openssl_product)'
19            ]
20          },
21        }],
22      ]
23    }
24  ]
25}
26