| 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/FileSystemJsObject.cpp', | 41 'src/FileSystemJsObject.cpp', |
| 42 'src/FilterEngine.cpp', | 42 'src/FilterEngine.cpp', |
| 43 'src/GlobalJsObject.cpp', | 43 'src/GlobalJsObject.cpp', |
| 44 'src/JsContext.cpp', | 44 'src/JsContext.cpp', |
| 45 'src/JsEngine.cpp', | 45 'src/JsEngine.cpp', |
| 46 'src/JsError.cpp', | 46 'src/JsError.cpp', |
| 47 'src/JsValue.cpp', | 47 'src/JsValue.cpp', |
| 48 'src/Notification.cpp', | 48 'src/Notification.cpp', |
| 49 'src/Platform.cpp', | 49 'src/Platform.cpp', |
| 50 'src/ReferrerMapping.cpp', | 50 'src/ReferrerMapping.cpp', |
| 51 'src/Thread.cpp', | |
| 52 'src/Utils.cpp', | 51 'src/Utils.cpp', |
| 53 'src/WebRequestJsObject.cpp', | 52 'src/WebRequestJsObject.cpp', |
| 54 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 53 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' |
| 55 ], | 54 ], |
| 56 'direct_dependent_settings': { | 55 'direct_dependent_settings': { |
| 57 'include_dirs': ['include'], | 56 'include_dirs': ['include'], |
| 58 'conditions': [[ | 57 'conditions': [[ |
| 59 'OS=="win"', { | 58 'OS=="win"', { |
| 60 'msvs_settings': { | 59 'msvs_settings': { |
| 61 'VCLinkerTool': { | 60 'VCLinkerTool': { |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 'test/WebRequest.cpp' | 204 'test/WebRequest.cpp' |
| 206 ], | 205 ], |
| 207 'msvs_settings': { | 206 'msvs_settings': { |
| 208 'VCLinkerTool': { | 207 'VCLinkerTool': { |
| 209 'SubSystem': '1', # Console | 208 'SubSystem': '1', # Console |
| 210 'EntryPointSymbol': 'mainCRTStartup', | 209 'EntryPointSymbol': 'mainCRTStartup', |
| 211 }, | 210 }, |
| 212 }, | 211 }, |
| 213 }] | 212 }] |
| 214 } | 213 } |
| OLD | NEW |