forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibcef.gyp
More file actions
56 lines (52 loc) · 778 Bytes
/
libcef.gyp
File metadata and controls
56 lines (52 loc) · 778 Bytes
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
{
'includes':
[
'../common.gypi',
],
'targets':
[
{
'target_name': 'libcef',
'type': 'none',
'dependencies':
[
'fetch.gyp:fetch',
],
'direct_dependent_settings':
{
'defines':
[
'USING_CEF_SHARED=1',
],
},
'conditions':
[
[
'OS == "win"',
{
'all_dependent_settings':
{
'variables':
{
# Gyp will only use a recursive xcopy if the path ends with '/'
'dist_aux_files': [ 'lib/win32/x86/CEF/', ],
},
},
},
],
[
'OS == "linux"',
{
'all_dependent_settings':
{
'variables':
{
'dist_aux_files': [ 'lib/linux/<(target_arch)/CEF/', ],
},
},
},
],
],
},
],
}