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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 'variables': { | 126 'variables': { |
127 'library_files': [ | 127 'library_files': [ |
128 'lib/info.js', | 128 'lib/info.js', |
129 'lib/io.js', | 129 'lib/io.js', |
130 'lib/prefs.js', | 130 'lib/prefs.js', |
131 'lib/utils.js', | 131 'lib/utils.js', |
132 'lib/elemHideHitRegistration.js', | 132 'lib/elemHideHitRegistration.js', |
133 'adblockpluscore/lib/events.js', | 133 'adblockpluscore/lib/events.js', |
134 'adblockpluscore/lib/coreUtils.js', | 134 'adblockpluscore/lib/coreUtils.js', |
135 'adblockpluscore/lib/filterNotifier.js', | 135 'adblockpluscore/lib/filterNotifier.js', |
136 'lib/init.js', | 136 'lib/init.js', |
| 137 'adblockpluscore/lib/common.js', |
137 'adblockpluscore/lib/filterClasses.js', | 138 'adblockpluscore/lib/filterClasses.js', |
138 'adblockpluscore/lib/subscriptionClasses.js', | 139 'adblockpluscore/lib/subscriptionClasses.js', |
139 'adblockpluscore/lib/filterStorage.js', | 140 'adblockpluscore/lib/filterStorage.js', |
140 'adblockpluscore/lib/elemHide.js', | 141 'adblockpluscore/lib/elemHide.js', |
141 'adblockpluscore/lib/cssRules.js', | 142 'adblockpluscore/lib/elemHideEmulation.js', |
142 'adblockpluscore/lib/matcher.js', | 143 'adblockpluscore/lib/matcher.js', |
143 'adblockpluscore/lib/filterListener.js', | 144 'adblockpluscore/lib/filterListener.js', |
144 'adblockpluscore/lib/downloader.js', | 145 'adblockpluscore/lib/downloader.js', |
145 'adblockpluscore/lib/notification.js', | 146 'adblockpluscore/lib/notification.js', |
146 'lib/notificationShowRegistration.js', | 147 'lib/notificationShowRegistration.js', |
147 'adblockpluscore/lib/synchronizer.js', | 148 'adblockpluscore/lib/synchronizer.js', |
148 'lib/filterUpdateRegistration.js', | 149 'lib/filterUpdateRegistration.js', |
149 'adblockpluscore/chrome/content/ui/subscriptions.xml', | 150 'adblockpluscore/chrome/content/ui/subscriptions.xml', |
150 'lib/updater.js', | 151 'lib/updater.js', |
151 ], | 152 ], |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'test/WebRequest.cpp' | 205 'test/WebRequest.cpp' |
205 ], | 206 ], |
206 'msvs_settings': { | 207 'msvs_settings': { |
207 'VCLinkerTool': { | 208 'VCLinkerTool': { |
208 'SubSystem': '1', # Console | 209 'SubSystem': '1', # Console |
209 'EntryPointSymbol': 'mainCRTStartup', | 210 'EntryPointSymbol': 'mainCRTStartup', |
210 }, | 211 }, |
211 }, | 212 }, |
212 }] | 213 }] |
213 } | 214 } |
OLD | NEW |