| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'src/JsEngine.cpp', | 66 'src/JsEngine.cpp', |
| 67 'src/JsEngineInternal.h', | 67 'src/JsEngineInternal.h', |
| 68 'src/JsEngineTransition.h', | 68 'src/JsEngineTransition.h', |
| 69 'src/JsError.cpp', | 69 'src/JsError.cpp', |
| 70 'src/JsError.h', | 70 'src/JsError.h', |
| 71 'src/JsValue.cpp', | 71 'src/JsValue.cpp', |
| 72 'src/Notification.cpp', | 72 'src/Notification.cpp', |
| 73 'src/ReferrerMapping.cpp', | 73 'src/ReferrerMapping.cpp', |
| 74 'src/Scheduler.cpp', | 74 'src/Scheduler.cpp', |
| 75 'src/Scheduler.h', | 75 'src/Scheduler.h', |
| 76 'src/Timeout.cpp', |
| 77 'src/Timeout.h', |
| 76 'src/Utils.cpp', | 78 'src/Utils.cpp', |
| 77 'src/Utils.h', | 79 'src/Utils.h', |
| 78 'src/Value.h', | 80 'src/Value.h', |
| 79 'src/V8Upgrade.h', | 81 'src/V8Upgrade.h', |
| 80 'src/WebRequestJsObject.cpp', | 82 'src/WebRequestJsObject.cpp', |
| 81 'src/WebRequestJsObject.h', | 83 'src/WebRequestJsObject.h', |
| 82 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 84 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' |
| 83 ], | 85 ], |
| 84 'direct_dependent_settings': { | 86 'direct_dependent_settings': { |
| 85 'include_dirs': ['include'] | 87 'include_dirs': ['include'] |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 'test/BaseJsTest.cpp', | 199 'test/BaseJsTest.cpp', |
| 198 'test/AppInfoJsObject.cpp', | 200 'test/AppInfoJsObject.cpp', |
| 199 'test/ConsoleJsObject.cpp', | 201 'test/ConsoleJsObject.cpp', |
| 200 'test/DefaultFileSystem.cpp', | 202 'test/DefaultFileSystem.cpp', |
| 201 'test/FileSystemJsObject.cpp', | 203 'test/FileSystemJsObject.cpp', |
| 202 'test/FilterEngine.cpp', | 204 'test/FilterEngine.cpp', |
| 203 'test/GlobalJsObject.cpp', | 205 'test/GlobalJsObject.cpp', |
| 204 'test/JsEngine.cpp', | 206 'test/JsEngine.cpp', |
| 205 'test/JsValue.cpp', | 207 'test/JsValue.cpp', |
| 206 'test/Notification.cpp', | 208 'test/Notification.cpp', |
| 209 'test/PausePoint.cpp', |
| 210 'test/PausePoint.h', |
| 207 'test/Prefs.cpp', | 211 'test/Prefs.cpp', |
| 208 'test/ReferrerMapping.cpp', | 212 'test/ReferrerMapping.cpp', |
| 209 'test/SchedulerTest.cpp', | 213 'test/SchedulerTest.cpp', |
| 214 'test/TimeoutTest.cpp', |
| 210 'test/UpdateCheck.cpp', | 215 'test/UpdateCheck.cpp', |
| 211 'test/WebRequest.cpp' | 216 'test/WebRequest.cpp' |
| 212 ], | 217 ], |
| 213 'msvs_settings': { | 218 'msvs_settings': { |
| 214 'VCLinkerTool': { | 219 'VCLinkerTool': { |
| 215 'SubSystem': '1', # Console | 220 'SubSystem': '1', # Console |
| 216 'EntryPointSymbol': 'mainCRTStartup', | 221 'EntryPointSymbol': 'mainCRTStartup', |
| 217 }, | 222 }, |
| 218 }, | 223 }, |
| 219 }] | 224 }] |
| 220 } | 225 } |
| OLD | NEW |