Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: adblockplus.gyp

Issue 10977050: Define _DEBUG (Closed)
Patch Set: Created July 9, 2013, 2:44 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'includes': ['defaults.gypi'], 2 'includes': ['defaults.gypi'],
3 3
4 'variables': { 4 'variables': {
5 'build_type%': 'devbuild', 5 'build_type%': 'devbuild',
6 'build_version%': '', 6 'build_version%': '',
7 'shared_files': [ 7 'shared_files': [
8 'src/shared/AutoHandle.cpp', 8 'src/shared/AutoHandle.cpp',
9 'src/shared/Communication.cpp', 9 'src/shared/Communication.cpp',
10 'src/shared/Dictionary.cpp', 10 'src/shared/Dictionary.cpp',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 '-lshell32', 111 '-lshell32',
112 ], 112 ],
113 'configurations': { 113 'configurations': {
114 # 'libraries' is not allowed under 'configurations' :-( 114 # 'libraries' is not allowed under 'configurations' :-(
115 'Debug': { 115 'Debug': {
116 'msvs_settings': { 116 'msvs_settings': {
117 'VCLinkerTool': { 117 'VCLinkerTool': {
118 'AdditionalDependencies': ['atlsd.lib'], 118 'AdditionalDependencies': ['atlsd.lib'],
119 }, 119 },
120 }, 120 },
121 'defines': ['_DEBUG'],
Wladimir Palant 2013/07/09 14:47:27 That's not really ABP-specific - would belong into
121 }, 122 },
122 'Release': { 123 'Release': {
123 'msvs_settings': { 124 'msvs_settings': {
124 'VCLinkerTool': { 125 'VCLinkerTool': {
125 'AdditionalDependencies': ['atls.lib'], 126 'AdditionalDependencies': ['atls.lib'],
126 }, 127 },
127 }, 128 },
128 }, 129 },
129 }, 130 },
130 'msvs_settings': { 131 'msvs_settings': {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], 167 'libraries': ['-ladvapi32', '-lshell32', '-lole32'],
167 }, 168 },
168 'msvs_settings': { 169 'msvs_settings': {
169 'VCLinkerTool': { 170 'VCLinkerTool': {
170 'SubSystem': '1', # Console 171 'SubSystem': '1', # Console
171 'EntryPointSymbol': 'mainCRTStartup', 172 'EntryPointSymbol': 'mainCRTStartup',
172 }, 173 },
173 }, 174 },
174 }] 175 }]
175 } 176 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld