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

Delta Between Two Patch Sets: adblockplus.gyp

Issue 4628980216889344: Issue #1234 - Add unit tests for TrimString (Closed)
Left Patch Set: Created Jan. 5, 2015, 3:02 p.m.
Right 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | test/UtilTest.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 20 matching lines...) Expand all
31 }, 31 },
32 32
33 'targets': [{ 33 'targets': [{
34 'target_name': 'shared', 34 'target_name': 'shared',
35 'type': 'static_library', 35 'type': 'static_library',
36 'sources': [ 36 'sources': [
37 'src/shared/AutoHandle.cpp', 37 'src/shared/AutoHandle.cpp',
38 'src/shared/Communication.cpp', 38 'src/shared/Communication.cpp',
39 'src/shared/Dictionary.cpp', 39 'src/shared/Dictionary.cpp',
40 'src/shared/Utils.cpp', 40 'src/shared/Utils.cpp',
41 'src/shared/Registry.h',
42 'src/shared/Registry.cpp',
43 'src/shared/IE_version.h',
44 'src/shared/IE_version.cpp',
41 ] 45 ]
42 }, 46 },
43 47
44 { 48 {
45 'target_name': 'AdblockPlusEngine', 49 'target_name': 'AdblockPlusEngine',
46 'type': 'executable', 50 'type': 'executable',
47 'dependencies': [ 51 'dependencies': [
48 'shared', 52 'shared',
49 'libadblockplus/libadblockplus.gyp:libadblockplus', 53 'libadblockplus/libadblockplus.gyp:libadblockplus',
50 ], 54 ],
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 { 202 {
199 'target_name': 'tests', 203 'target_name': 'tests',
200 'type': 'executable', 204 'type': 'executable',
201 'dependencies': [ 205 'dependencies': [
202 'shared', 206 'shared',
203 'libadblockplus/third_party/googletest.gyp:googletest_main', 207 'libadblockplus/third_party/googletest.gyp:googletest_main',
204 ], 208 ],
205 'sources': [ 209 'sources': [
206 'test/CommunicationTest.cpp', 210 'test/CommunicationTest.cpp',
207 'test/DictionaryTest.cpp', 211 'test/DictionaryTest.cpp',
212 'test/RegistryTest.cpp',
208 'test/UtilTest.cpp', 213 'test/UtilTest.cpp',
209 ], 214 ],
210 'defines': ['WINVER=0x0501'], 215 'defines': ['WINVER=0x0501'],
211 'link_settings': { 216 'link_settings': {
212 'libraries': ['-ladvapi32', '-lshell32', '-lole32'], 217 'libraries': ['-ladvapi32', '-lshell32', '-lole32'],
213 }, 218 },
214 'msvs_settings': { 219 'msvs_settings': {
215 'VCLinkerTool': { 220 'VCLinkerTool': {
216 'SubSystem': '1', # Console 221 'SubSystem': '1', # Console
217 'EntryPointSymbol': 'mainCRTStartup', 222 'EntryPointSymbol': 'mainCRTStartup',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 'Release': { 300 'Release': {
296 'msvs_settings': { 301 'msvs_settings': {
297 'VCLinkerTool': { 302 'VCLinkerTool': {
298 'AdditionalDependencies': ['atls.lib'], 303 'AdditionalDependencies': ['atls.lib'],
299 }, 304 },
300 }, 305 },
301 }, 306 },
302 }, 307 },
303 }] 308 }]
304 } 309 }
LEFTRIGHT
« no previous file | test/UtilTest.cpp » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld