| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/matcher.js', | 118 'adblockplus/lib/matcher.js', |
| 119 'adblockplus/lib/filterListener.js', | 119 'adblockplus/lib/filterListener.js', |
| 120 'adblockplus/lib/downloader.js', | 120 'adblockplus/lib/downloader.js', |
| 121 'adblockplus/lib/notification.js', | 121 'adblockplus/lib/notification.js', |
| 122 'lib/notificationShowRegistration.js', |
| 122 'adblockplus/lib/synchronizer.js', | 123 'adblockplus/lib/synchronizer.js', |
| 123 'lib/filterUpdateRegistration.js', | 124 'lib/filterUpdateRegistration.js', |
| 124 'adblockplus/chrome/content/ui/subscriptions.xml', | 125 'adblockplus/chrome/content/ui/subscriptions.xml', |
| 125 'lib/updater.js', | 126 'lib/updater.js', |
| 126 ], | 127 ], |
| 127 'load_before_files': [ | 128 'load_before_files': [ |
| 128 'lib/compat.js' | 129 'lib/compat.js' |
| 129 ], | 130 ], |
| 130 'load_after_files': [ | 131 'load_after_files': [ |
| 131 'lib/api.js', | 132 'lib/api.js', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 'VCLinkerTool': { | 181 'VCLinkerTool': { |
| 181 'SubSystem': '1', # Console | 182 'SubSystem': '1', # Console |
| 182 'EntryPointSymbol': 'mainCRTStartup', | 183 'EntryPointSymbol': 'mainCRTStartup', |
| 183 }, | 184 }, |
| 184 }, | 185 }, |
| 185 'xcode_settings': { | 186 'xcode_settings': { |
| 186 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], | 187 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], |
| 187 }, | 188 }, |
| 188 }] | 189 }] |
| 189 } | 190 } |
| OLD | NEW |