forked from chinnurtb/adblockplusie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
defaults.gypi
78 lines (76 loc) · 2.07 KB
/
defaults.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
{
'target_defaults': {
'configurations': {
'Debug': {
'defines': [ '_DEBUG' ],
'msvs_settings': {
'VCCLCompilerTool': {
'Optimization': '0',
'conditions': [
['component=="shared_library"', {
'RuntimeLibrary': '3', # /MDd
}, {
'RuntimeLibrary': '1', # /MTd
}]
],
},
},
},
'Release': {
'defines': [ 'NDEBUG' ],
'msvs_settings': {
'VCCLCompilerTool': {
'InlineFunctionExpansion': 2, # AnySuitable
'EnableIntrinsicFunctions': 'true',
'EnableFunctionLevelLinking': 'true',
'FavorSizeOrSpeed': 1, # Speed
'OmitFramePointers': 'true',
'Optimization': 2, # MaxSpeed
'RuntimeTypeInfo': 'false',
'StringPooling': 'true',
'WholeProgramOptimization': 'true',
'conditions': [
['component=="shared_library"', {
'RuntimeLibrary': '2', # /MD
}, {
'RuntimeLibrary': '0', # /MT
}]
],
},
'VCLinkerTool': {
'EnableCOMDATFolding': 2, # true
'OptimizeReferences': 2, # true
'LinkTimeCodeGeneration': 1,# UseLinkTimeCodeGeneration
},
},
},
},
'defines': ['_WINDOWS'],
'msvs_configuration_attributes': {
'CharacterSet': '1', # Unicode
},
'msvs_settings': {
'VCCLCompilerTool': {
'WarningLevel': 3, # Level3
},
'VCLinkerTool': {
'SubSystem': '2', # Windows
'GenerateDebugInformation': 'true',
},
'VCMIDLTool': {
'TypeLibraryName': '$(TargetName).tlb',
},
},
'conditions': [
[
'target_arch=="x64"', {
'msvs_configuration_platform': 'x64',
'defines': ['WIN64'],
}, {
'msvs_configuration_platform': 'Win32',
'defines': ['WIN32'],
}
],
],
},
}