| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'adblockplus/lib/filterNotifier.js', | 112 'adblockplus/lib/filterNotifier.js', |
| 113 'lib/init.js', | 113 'lib/init.js', |
| 114 'adblockplus/lib/filterClasses.js', | 114 'adblockplus/lib/filterClasses.js', |
| 115 'adblockplus/lib/subscriptionClasses.js', | 115 'adblockplus/lib/subscriptionClasses.js', |
| 116 'adblockplus/lib/filterStorage.js', | 116 'adblockplus/lib/filterStorage.js', |
| 117 'adblockplus/lib/elemHide.js', | 117 'adblockplus/lib/elemHide.js', |
| 118 'adblockplus/lib/cssRules.js', |
| 118 'adblockplus/lib/matcher.js', | 119 'adblockplus/lib/matcher.js', |
| 119 'adblockplus/lib/filterListener.js', | 120 'adblockplus/lib/filterListener.js', |
| 120 'adblockplus/lib/downloader.js', | 121 'adblockplus/lib/downloader.js', |
| 121 'adblockplus/lib/notification.js', | 122 'adblockplus/lib/notification.js', |
| 122 'lib/notificationShowRegistration.js', | 123 'lib/notificationShowRegistration.js', |
| 123 'adblockplus/lib/synchronizer.js', | 124 'adblockplus/lib/synchronizer.js', |
| 124 'lib/filterUpdateRegistration.js', | 125 'lib/filterUpdateRegistration.js', |
| 125 'adblockplus/chrome/content/ui/subscriptions.xml', | 126 'adblockplus/chrome/content/ui/subscriptions.xml', |
| 126 'lib/updater.js', | 127 'lib/updater.js', |
| 127 ], | 128 ], |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'test/WebRequest.cpp' | 179 'test/WebRequest.cpp' |
| 179 ], | 180 ], |
| 180 'msvs_settings': { | 181 'msvs_settings': { |
| 181 'VCLinkerTool': { | 182 'VCLinkerTool': { |
| 182 'SubSystem': '1', # Console | 183 'SubSystem': '1', # Console |
| 183 'EntryPointSymbol': 'mainCRTStartup', | 184 'EntryPointSymbol': 'mainCRTStartup', |
| 184 }, | 185 }, |
| 185 }, | 186 }, |
| 186 }] | 187 }] |
| 187 } | 188 } |
| OLD | NEW |