| 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 30 matching lines...) Expand all  Loading... | 
| 41       'src/DefaultFileSystem.cpp', | 41       'src/DefaultFileSystem.cpp', | 
| 42       'src/FileSystemJsObject.cpp', | 42       'src/FileSystemJsObject.cpp', | 
| 43       'src/FilterEngine.cpp', | 43       'src/FilterEngine.cpp', | 
| 44       'src/GlobalJsObject.cpp', | 44       'src/GlobalJsObject.cpp', | 
| 45       'src/JsContext.cpp', | 45       'src/JsContext.cpp', | 
| 46       'src/JsEngine.cpp', | 46       'src/JsEngine.cpp', | 
| 47       'src/JsError.cpp', | 47       'src/JsError.cpp', | 
| 48       'src/JsValue.cpp', | 48       'src/JsValue.cpp', | 
| 49       'src/Notification.cpp', | 49       'src/Notification.cpp', | 
| 50       'src/ReferrerMapping.cpp', | 50       'src/ReferrerMapping.cpp', | 
| 51       'src/Thread.cpp', | 51       'src/Scheduler.cpp', | 
| 52       'src/Utils.cpp', | 52       'src/Utils.cpp', | 
| 53       'src/WebRequestJsObject.cpp', | 53       'src/WebRequestJsObject.cpp', | 
| 54       '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 54       '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 
| 55     ], | 55     ], | 
| 56     'direct_dependent_settings': { | 56     'direct_dependent_settings': { | 
| 57       'include_dirs': ['include'] | 57       'include_dirs': ['include'] | 
| 58     }, | 58     }, | 
| 59     'conditions': [ | 59     'conditions': [ | 
| 60       ['OS=="android"', { | 60       ['OS=="android"', { | 
| 61         'link_settings': { | 61         'link_settings': { | 
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 171       'test/ConsoleJsObject.cpp', | 171       'test/ConsoleJsObject.cpp', | 
| 172       'test/DefaultFileSystem.cpp', | 172       'test/DefaultFileSystem.cpp', | 
| 173       'test/FileSystemJsObject.cpp', | 173       'test/FileSystemJsObject.cpp', | 
| 174       'test/FilterEngine.cpp', | 174       'test/FilterEngine.cpp', | 
| 175       'test/GlobalJsObject.cpp', | 175       'test/GlobalJsObject.cpp', | 
| 176       'test/JsEngine.cpp', | 176       'test/JsEngine.cpp', | 
| 177       'test/JsValue.cpp', | 177       'test/JsValue.cpp', | 
| 178       'test/Notification.cpp', | 178       'test/Notification.cpp', | 
| 179       'test/Prefs.cpp', | 179       'test/Prefs.cpp', | 
| 180       'test/ReferrerMapping.cpp', | 180       'test/ReferrerMapping.cpp', | 
| 181       'test/Thread.cpp', |  | 
| 182       'test/UpdateCheck.cpp', | 181       'test/UpdateCheck.cpp', | 
| 183       'test/WebRequest.cpp' | 182       'test/WebRequest.cpp' | 
| 184     ], | 183     ], | 
| 185     'msvs_settings': { | 184     'msvs_settings': { | 
| 186       'VCLinkerTool': { | 185       'VCLinkerTool': { | 
| 187         'SubSystem': '1',   # Console | 186         'SubSystem': '1',   # Console | 
| 188         'EntryPointSymbol': 'mainCRTStartup', | 187         'EntryPointSymbol': 'mainCRTStartup', | 
| 189       }, | 188       }, | 
| 190     }, | 189     }, | 
| 191   }] | 190   }] | 
| 192 } | 191 } | 
| OLD | NEW | 
|---|