Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: libadblockplus.gyp

Issue 10800079: Implemented update checking functionality (Closed)
Patch Set: Created June 5, 2013, 6:47 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/updater.js ('k') | src/FilterEngine.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
97 'adblockplus/lib/filterNotifier.js', 98 'adblockplus/lib/filterNotifier.js',
98 'lib/init.js', 99 'lib/init.js',
99 'adblockplus/lib/filterClasses.js', 100 'adblockplus/lib/filterClasses.js',
100 'adblockplus/lib/subscriptionClasses.js', 101 'adblockplus/lib/subscriptionClasses.js',
101 'adblockplus/lib/filterStorage.js', 102 'adblockplus/lib/filterStorage.js',
102 'adblockplus/lib/elemHide.js', 103 'adblockplus/lib/elemHide.js',
103 'adblockplus/lib/matcher.js', 104 'adblockplus/lib/matcher.js',
104 'adblockplus/lib/filterListener.js', 105 'adblockplus/lib/filterListener.js',
105 'adblockplus/lib/synchronizer.js', 106 'adblockplus/lib/synchronizer.js',
106 'adblockplus/chrome/content/ui/subscriptions.xml', 107 'adblockplus/chrome/content/ui/subscriptions.xml',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'test/AppInfoJsObject.cpp', 146 'test/AppInfoJsObject.cpp',
146 'test/ConsoleJsObject.cpp', 147 'test/ConsoleJsObject.cpp',
147 'test/DefaultFileSystem.cpp', 148 'test/DefaultFileSystem.cpp',
148 'test/FileSystemJsObject.cpp', 149 'test/FileSystemJsObject.cpp',
149 'test/FilterEngine.cpp', 150 'test/FilterEngine.cpp',
150 'test/GlobalJsObject.cpp', 151 'test/GlobalJsObject.cpp',
151 'test/JsEngine.cpp', 152 'test/JsEngine.cpp',
152 'test/JsValue.cpp', 153 'test/JsValue.cpp',
153 'test/Prefs.cpp', 154 'test/Prefs.cpp',
154 'test/Thread.cpp', 155 'test/Thread.cpp',
156 'test/UpdateCheck.cpp',
155 'test/WebRequest.cpp' 157 'test/WebRequest.cpp'
156 ], 158 ],
157 'msvs_settings': { 159 'msvs_settings': {
158 'VCLinkerTool': { 160 'VCLinkerTool': {
159 'SubSystem': '1', # Console 161 'SubSystem': '1', # Console
160 'EntryPointSymbol': 'mainCRTStartup', 162 'EntryPointSymbol': 'mainCRTStartup',
161 }, 163 },
162 }, 164 },
163 }] 165 }]
164 } 166 }
OLDNEW
« no previous file with comments | « lib/updater.js ('k') | src/FilterEngine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld