| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'actions': [{ | 103 'actions': [{ |
| 104 'action_name': 'convert_js', | 104 'action_name': 'convert_js', |
| 105 'variables': { | 105 'variables': { |
| 106 'library_files': [ | 106 'library_files': [ |
| 107 'lib/info.js', | 107 'lib/info.js', |
| 108 'lib/io.js', | 108 'lib/io.js', |
| 109 'lib/prefs.js', | 109 'lib/prefs.js', |
| 110 'lib/utils.js', | 110 'lib/utils.js', |
| 111 'lib/elemHideHitRegistration.js', | 111 'lib/elemHideHitRegistration.js', |
| 112 'adblockpluscore/lib/events.js', | 112 'adblockpluscore/lib/events.js', |
| 113 'adblockpluscore/lib/coreUtils.js', |
| 113 'adblockpluscore/lib/filterNotifier.js', | 114 'adblockpluscore/lib/filterNotifier.js', |
| 114 'lib/init.js', | 115 'lib/init.js', |
| 115 'adblockpluscore/lib/filterClasses.js', | 116 'adblockpluscore/lib/filterClasses.js', |
| 116 'adblockpluscore/lib/subscriptionClasses.js', | 117 'adblockpluscore/lib/subscriptionClasses.js', |
| 117 'adblockpluscore/lib/filterStorage.js', | 118 'adblockpluscore/lib/filterStorage.js', |
| 118 'adblockpluscore/lib/elemHide.js', | 119 'adblockpluscore/lib/elemHide.js', |
| 119 'adblockpluscore/lib/cssRules.js', | 120 'adblockpluscore/lib/cssRules.js', |
| 120 'adblockpluscore/lib/matcher.js', | 121 'adblockpluscore/lib/matcher.js', |
| 121 'adblockpluscore/lib/filterListener.js', | 122 'adblockpluscore/lib/filterListener.js', |
| 122 'adblockpluscore/lib/downloader.js', | 123 'adblockpluscore/lib/downloader.js', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 'test/WebRequest.cpp' | 183 'test/WebRequest.cpp' |
| 183 ], | 184 ], |
| 184 'msvs_settings': { | 185 'msvs_settings': { |
| 185 'VCLinkerTool': { | 186 'VCLinkerTool': { |
| 186 'SubSystem': '1', # Console | 187 'SubSystem': '1', # Console |
| 187 'EntryPointSymbol': 'mainCRTStartup', | 188 'EntryPointSymbol': 'mainCRTStartup', |
| 188 }, | 189 }, |
| 189 }, | 190 }, |
| 190 }] | 191 }] |
| 191 } | 192 } |
| OLD | NEW |