-
Notifications
You must be signed in to change notification settings - Fork 47
/
binding.gyp
35 lines (35 loc) · 1.11 KB
/
binding.gyp
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
{
'targets': [
{
'target_name':'webinos',
'dependencies': [
'webinos/core/manager/certificate_manager/src/binding.gyp:certificate_manager',
'webinos/core/manager/policy_manager/src/binding.gyp:pm',
'webinos/core/manager/keystore/src/binding.gyp:keystore',
'webinos/core/api/contacts/src/binding.gyp:localcontacts',
'webinos/core/api/devicestatus/src/binding.gyp:devicestatus',
'webinos_wrt#host',
'webinos/core/api/discovery/src/binding.gyp:bluetooth',
'webinos/core/manager/policy_manager/src/promptMan/binding.gyp:promptMan',
],
},
{
'target_name': 'webinos_wrt',
'type': 'none',
'toolsets': ['host'],
'copies': [
{
'files': [
'build/Release/certificate_manager.node',
'build/Release/keystore.node',
'build/Release/localcontacts.node',
'build/Release/bluetooth.node',
'build/Release/nativedevicestatus.node',
'build/Release/pm.node',
'build/Release/promptMan.node',
],
'destination': 'node_modules/',
}],
}, # end webinos_wrt
],
}