-
Notifications
You must be signed in to change notification settings - Fork 59
/
libadblockplus.gypi
81 lines (80 loc) · 2.06 KB
/
libadblockplus.gypi
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
'includes': ['common.gypi'],
'conditions': [
['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \
or OS=="netbsd" or OS=="android"', {
'target_defaults': {
'cflags_cc': [ '-Wall', '-W', '-Wno-unused-parameter',
'-Wnon-virtual-dtor', '-pedantic' ]
}
}],
['OS=="linux" and target_arch=="ia32"', {
'target_defaults': {
'cflags_cc': [ '-m32' ]
}
}],
['OS=="win"', {
'target_defaults': {
'conditions': [
['target_arch=="x64"', {
'msvs_configuration_platform': 'x64'
}]
],
'msvs_configuration_attributes': {
'CharacterSet': '1',
},
'defines': [
'WIN32',
'_ITERATOR_DEBUG_LEVEL=0' #Disabled due to linking errors on Windows 64 build, see: https://eyeogmbh.atlassian.net/browse/DP-12
],
'link_settings': {
'libraries': ['-lDbgHelp'],
},
}
}],
['OS=="mac"', {
'xcode_settings': {
'ARCHS': ["x86_64"]
}
}],
['target_arch=="x64" or target_arch=="arm64"', {
'target_defaults': {
# https://www.mail-archive.com/[email protected]/msg160557.html
'cflags_cc': [ '-DV8_COMPRESS_POINTERS', '-DV8_31BIT_SMIS_ON_64BIT_ARCH' ]
}
}],
],
'target_defaults': {
'configurations': {
'Debug': {
'defines': [
'DEBUG'
],
'msvs_settings': {
'VCCLCompilerTool': {
'conditions': [
['component=="shared_library"', {
'RuntimeLibrary': '3', #/MDd
}, {
'RuntimeLibrary': '1', #/MTd
}
]]
}
}
},
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'conditions': [
['component=="shared_library"', {
'RuntimeLibrary': '2', #/MD
}, {
'RuntimeLibrary': '0', #/MT
}
]]
}
}
}
},
}
}