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. 5, 2015, 4:24 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') | test/UtilTest.cpp » ('J')
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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 { 198 {
199 'target_name': 'tests', 199 'target_name': 'tests',
200 'type': 'executable', 200 'type': 'executable',
201 'dependencies': [ 201 'dependencies': [
202 'shared', 202 'shared',
203 'libadblockplus/third_party/googletest.gyp:googletest_main', 203 'libadblockplus/third_party/googletest.gyp:googletest_main',
204 ], 204 ],
205 'sources': [ 205 'sources': [
206 'test/CommunicationTest.cpp', 206 'test/CommunicationTest.cpp',
207 'test/DictionaryTest.cpp', 207 'test/DictionaryTest.cpp',
208 'test/UtilTest.cpp',
208 ], 209 ],
209 'defines': ['WINVER=0x0501'], 210 'defines': ['WINVER=0x0501'],
210 'link_settings': { 211 'link_settings': {
211 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], 212 'libraries': ['-ladvapi32', '-lshell32', '-lole32'],
212 }, 213 },
213 'msvs_settings': { 214 'msvs_settings': {
214 'VCLinkerTool': { 215 'VCLinkerTool': {
215 'SubSystem': '1', # Console 216 'SubSystem': '1', # Console
216 'EntryPointSymbol': 'mainCRTStartup', 217 'EntryPointSymbol': 'mainCRTStartup',
217 }, 218 },
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 'Release': { 295 'Release': {
295 'msvs_settings': { 296 'msvs_settings': {
296 'VCLinkerTool': { 297 'VCLinkerTool': {
297 'AdditionalDependencies': ['atls.lib'], 298 'AdditionalDependencies': ['atls.lib'],
298 }, 299 },
299 }, 300 },
300 }, 301 },
301 }, 302 },
302 }] 303 }]
303 } 304 }
OLDNEW
« no previous file with comments | « no previous file | test/UtilTest.cpp » ('j') | test/UtilTest.cpp » ('J')

Powered by Google App Engine
This is Rietveld