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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 ], | 87 ], |
88 'actions': [{ | 88 'actions': [{ |
89 'action_name': 'convert_js', | 89 'action_name': 'convert_js', |
90 'variables': { | 90 'variables': { |
91 'library_files': [ | 91 'library_files': [ |
92 'lib/info.js', | 92 'lib/info.js', |
93 'lib/io.js', | 93 'lib/io.js', |
94 'lib/prefs.js', | 94 'lib/prefs.js', |
95 'lib/utils.js', | 95 'lib/utils.js', |
96 'lib/elemHideHitRegistration.js', | 96 'lib/elemHideHitRegistration.js', |
97 'lib/updater.js', | |
98 'adblockplus/lib/filterNotifier.js', | 97 'adblockplus/lib/filterNotifier.js', |
99 'lib/init.js', | 98 'lib/init.js', |
100 'adblockplus/lib/filterClasses.js', | 99 'adblockplus/lib/filterClasses.js', |
101 'adblockplus/lib/subscriptionClasses.js', | 100 'adblockplus/lib/subscriptionClasses.js', |
102 'adblockplus/lib/filterStorage.js', | 101 'adblockplus/lib/filterStorage.js', |
103 'adblockplus/lib/elemHide.js', | 102 'adblockplus/lib/elemHide.js', |
104 'adblockplus/lib/matcher.js', | 103 'adblockplus/lib/matcher.js', |
105 'adblockplus/lib/filterListener.js', | 104 'adblockplus/lib/filterListener.js', |
106 'adblockplus/lib/downloader.js', | 105 'adblockplus/lib/downloader.js', |
107 'adblockplus/lib/synchronizer.js', | 106 'adblockplus/lib/synchronizer.js', |
108 'adblockplus/chrome/content/ui/subscriptions.xml', | 107 'adblockplus/chrome/content/ui/subscriptions.xml', |
| 108 'lib/updater.js', |
109 ], | 109 ], |
110 'load_before_files': [ | 110 'load_before_files': [ |
111 'lib/compat.js' | 111 'lib/compat.js' |
112 ], | 112 ], |
113 'load_after_files': [ | 113 'load_after_files': [ |
114 'lib/api.js', | 114 'lib/api.js', |
115 'lib/publicSuffixList.js', | 115 'lib/publicSuffixList.js', |
116 'lib/punycode.js', | 116 'lib/punycode.js', |
117 'lib/basedomain.js', | 117 'lib/basedomain.js', |
118 ], | 118 ], |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 'test/WebRequest.cpp' | 158 'test/WebRequest.cpp' |
159 ], | 159 ], |
160 'msvs_settings': { | 160 'msvs_settings': { |
161 'VCLinkerTool': { | 161 'VCLinkerTool': { |
162 'SubSystem': '1', # Console | 162 'SubSystem': '1', # Console |
163 'EntryPointSymbol': 'mainCRTStartup', | 163 'EntryPointSymbol': 'mainCRTStartup', |
164 }, | 164 }, |
165 }, | 165 }, |
166 }] | 166 }] |
167 } | 167 } |
OLD | NEW |