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

Side by Side Diff: libadblockplus.gyp

Issue 5163715573841920: Issue 768 - Switch from TR1 to C++11 (Closed)
Patch Set: Created July 11, 2014, 2: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
OLDNEW
1 { 1 {
2 'conditions': [[ 2 'conditions': [[
3 # We don't want to use curl on Windows and Android, skip the check there 3 # We don't want to use curl on Windows and Android, skip the check there
4 'OS=="win" or OS=="android"', 4 'OS=="win" or OS=="android"',
5 { 5 {
6 'variables': { 6 'variables': {
7 'have_curl': 0 7 'have_curl': 0
8 } 8 }
9 }, 9 },
10 { 10 {
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 'test/Thread.cpp', 158 'test/Thread.cpp',
159 'test/UpdateCheck.cpp', 159 'test/UpdateCheck.cpp',
160 'test/WebRequest.cpp' 160 'test/WebRequest.cpp'
161 ], 161 ],
162 'msvs_settings': { 162 'msvs_settings': {
163 'VCLinkerTool': { 163 'VCLinkerTool': {
164 'SubSystem': '1', # Console 164 'SubSystem': '1', # Console
165 'EntryPointSymbol': 'mainCRTStartup', 165 'EntryPointSymbol': 'mainCRTStartup',
166 }, 166 },
167 }, 167 },
168 'xcode_settings': {
169 'OTHER_LDFLAGS': ['-stdlib=libstdc++'],
170 },
171 }] 168 }]
172 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld