| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/Utils.cpp', | 76 'src/Utils.cpp', |
| 77 'src/Utils.h', | 77 'src/Utils.h', |
| 78 'src/Value.h', |
| 78 'src/V8Upgrade.h', | 79 'src/V8Upgrade.h', |
| 79 'src/WebRequestJsObject.cpp', | 80 'src/WebRequestJsObject.cpp', |
| 80 'src/WebRequestJsObject.h', | 81 'src/WebRequestJsObject.h', |
| 81 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' | 82 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' |
| 82 ], | 83 ], |
| 83 'direct_dependent_settings': { | 84 'direct_dependent_settings': { |
| 84 'include_dirs': ['include'] | 85 'include_dirs': ['include'] |
| 85 }, | 86 }, |
| 86 'conditions': [ | 87 'conditions': [ |
| 87 ['OS=="android"', { | 88 ['OS=="android"', { |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 'test/WebRequest.cpp' | 211 'test/WebRequest.cpp' |
| 211 ], | 212 ], |
| 212 'msvs_settings': { | 213 'msvs_settings': { |
| 213 'VCLinkerTool': { | 214 'VCLinkerTool': { |
| 214 'SubSystem': '1', # Console | 215 'SubSystem': '1', # Console |
| 215 'EntryPointSymbol': 'mainCRTStartup', | 216 'EntryPointSymbol': 'mainCRTStartup', |
| 216 }, | 217 }, |
| 217 }, | 218 }, |
| 218 }] | 219 }] |
| 219 } | 220 } |
| OLD | NEW |