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

Side by Side Diff: adblockplus.gyp

Issue 4628980216889344: Issue #1234 - Add unit tests for TrimString (Closed)
Patch Set: Created Jan. 14, 2015, 1:46 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 | test/UtilTest.cpp » ('j') | 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 }, 7 },
8 8
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 'target_name': 'tests', 203 'target_name': 'tests',
204 'type': 'executable', 204 'type': 'executable',
205 'dependencies': [ 205 'dependencies': [
206 'shared', 206 'shared',
207 'libadblockplus/third_party/googletest.gyp:googletest_main', 207 'libadblockplus/third_party/googletest.gyp:googletest_main',
208 ], 208 ],
209 'sources': [ 209 'sources': [
210 'test/CommunicationTest.cpp', 210 'test/CommunicationTest.cpp',
211 'test/DictionaryTest.cpp', 211 'test/DictionaryTest.cpp',
212 'test/RegistryTest.cpp', 212 'test/RegistryTest.cpp',
213 'test/UtilTest.cpp',
213 ], 214 ],
214 'defines': ['WINVER=0x0501'], 215 'defines': ['WINVER=0x0501'],
215 'link_settings': { 216 'link_settings': {
216 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], 217 'libraries': ['-ladvapi32', '-lshell32', '-lole32'],
217 }, 218 },
218 'msvs_settings': { 219 'msvs_settings': {
219 'VCLinkerTool': { 220 'VCLinkerTool': {
220 'SubSystem': '1', # Console 221 'SubSystem': '1', # Console
221 'EntryPointSymbol': 'mainCRTStartup', 222 'EntryPointSymbol': 'mainCRTStartup',
222 }, 223 },
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 'Release': { 300 'Release': {
300 'msvs_settings': { 301 'msvs_settings': {
301 'VCLinkerTool': { 302 'VCLinkerTool': {
302 'AdditionalDependencies': ['atls.lib'], 303 'AdditionalDependencies': ['atls.lib'],
303 }, 304 },
304 }, 305 },
305 }, 306 },
306 }, 307 },
307 }] 308 }]
308 } 309 }
OLDNEW
« no previous file with comments | « no previous file | test/UtilTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld