| LEFT | RIGHT |
| 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 ], | 103 ], |
| 104 'actions': [{ | 104 'actions': [{ |
| 105 'action_name': 'convert_js', | 105 'action_name': 'convert_js', |
| 106 'variables': { | 106 'variables': { |
| 107 'library_files': [ | 107 'library_files': [ |
| 108 'lib/info.js', | 108 'lib/info.js', |
| 109 'lib/io.js', | 109 'lib/io.js', |
| 110 'lib/prefs.js', | 110 'lib/prefs.js', |
| 111 'lib/utils.js', | 111 'lib/utils.js', |
| 112 'lib/elemHideHitRegistration.js', | 112 'lib/elemHideHitRegistration.js', |
| 113 'adblockplus/lib/filterNotifier.js', | 113 'adblockpluscore/lib/events.js', |
| 114 'adblockpluscore/lib/filterNotifier.js', |
| 114 'lib/init.js', | 115 'lib/init.js', |
| 115 'adblockplus/lib/filterClasses.js', | 116 'adblockpluscore/lib/filterClasses.js', |
| 116 'adblockplus/lib/subscriptionClasses.js', | 117 'adblockpluscore/lib/subscriptionClasses.js', |
| 117 'adblockplus/lib/filterStorage.js', | 118 'adblockpluscore/lib/filterStorage.js', |
| 118 'adblockplus/lib/elemHide.js', | 119 'adblockpluscore/lib/elemHide.js', |
| 119 'adblockplus/lib/matcher.js', | 120 'adblockpluscore/lib/cssRules.js', |
| 120 'adblockplus/lib/filterListener.js', | 121 'adblockpluscore/lib/matcher.js', |
| 121 'adblockplus/lib/downloader.js', | 122 'adblockpluscore/lib/filterListener.js', |
| 122 'adblockplus/lib/notification.js', | 123 'adblockpluscore/lib/downloader.js', |
| 124 'adblockpluscore/lib/notification.js', |
| 123 'lib/notificationShowRegistration.js', | 125 'lib/notificationShowRegistration.js', |
| 124 'adblockplus/lib/synchronizer.js', | 126 'adblockpluscore/lib/synchronizer.js', |
| 125 'lib/filterUpdateRegistration.js', | 127 'lib/filterUpdateRegistration.js', |
| 126 'adblockplus/chrome/content/ui/subscriptions.xml', | 128 'adblockpluscore/chrome/content/ui/subscriptions.xml', |
| 127 'lib/updater.js', | 129 'lib/updater.js', |
| 128 ], | 130 ], |
| 129 'load_before_files': [ | 131 'load_before_files': [ |
| 130 'lib/compat.js' | 132 'lib/compat.js' |
| 131 ], | 133 ], |
| 132 'load_after_files': [ | 134 'load_after_files': [ |
| 133 'lib/api.js', | 135 'lib/api.js', |
| 134 'lib/publicSuffixList.js', | 136 'lib/publicSuffixList.js', |
| 135 'lib/punycode.js', | 137 'lib/punycode.js', |
| 136 'lib/basedomain.js', | 138 'lib/basedomain.js', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'test/WebRequest.cpp' | 183 'test/WebRequest.cpp' |
| 182 ], | 184 ], |
| 183 'msvs_settings': { | 185 'msvs_settings': { |
| 184 'VCLinkerTool': { | 186 'VCLinkerTool': { |
| 185 'SubSystem': '1', # Console | 187 'SubSystem': '1', # Console |
| 186 'EntryPointSymbol': 'mainCRTStartup', | 188 'EntryPointSymbol': 'mainCRTStartup', |
| 187 }, | 189 }, |
| 188 }, | 190 }, |
| 189 }] | 191 }] |
| 190 } | 192 } |
| LEFT | RIGHT |