| OLD | NEW | 
|---|
| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 176       'test/Thread.cpp', | 176       'test/Thread.cpp', | 
| 177       'test/UpdateCheck.cpp', | 177       'test/UpdateCheck.cpp', | 
| 178       'test/WebRequest.cpp' | 178       'test/WebRequest.cpp' | 
| 179     ], | 179     ], | 
| 180     'msvs_settings': { | 180     'msvs_settings': { | 
| 181       'VCLinkerTool': { | 181       'VCLinkerTool': { | 
| 182         'SubSystem': '1',   # Console | 182         'SubSystem': '1',   # Console | 
| 183         'EntryPointSymbol': 'mainCRTStartup', | 183         'EntryPointSymbol': 'mainCRTStartup', | 
| 184       }, | 184       }, | 
| 185     }, | 185     }, | 
| 186     'xcode_settings': { |  | 
| 187       'OTHER_LDFLAGS': ['-stdlib=libstdc++'], |  | 
| 188     }, |  | 
| 189   }] | 186   }] | 
| 190 } | 187 } | 
| OLD | NEW | 
|---|