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

Side by Side Diff: libadblockplus.gyp

Issue 29428650: Issue 5180 - introduce asynchronous web request (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created May 3, 2017, 2:21 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 | « include/AdblockPlus/WebRequest.h ('k') | src/DefaultWebRequest.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 18 matching lines...) Expand all
29 { 29 {
30 'target_name': 'libadblockplus', 30 'target_name': 'libadblockplus',
31 'type': '<(library)', 31 'type': '<(library)',
32 'dependencies': ['ensure_dependencies'], 32 'dependencies': ['ensure_dependencies'],
33 'include_dirs': [ 33 'include_dirs': [
34 'include', 34 'include',
35 'third_party/v8/include', 35 'third_party/v8/include',
36 ], 36 ],
37 'sources': [ 37 'sources': [
38 'include/AdblockPlus/ITimer.h', 38 'include/AdblockPlus/ITimer.h',
39 'include/AdblockPlus/IWebRequest.h',
40 'include/AdblockPlus/DefaultWebRequest.h',
39 'src/AppInfoJsObject.cpp', 41 'src/AppInfoJsObject.cpp',
40 'src/ConsoleJsObject.cpp', 42 'src/ConsoleJsObject.cpp',
41 'src/DefaultLogSystem.cpp', 43 'src/DefaultLogSystem.cpp',
42 'src/DefaultFileSystem.cpp', 44 'src/DefaultFileSystem.cpp',
43 'src/DefaultTimer.cpp', 45 'src/DefaultTimer.cpp',
44 'src/DefaultTimer.h', 46 'src/DefaultTimer.h',
47 'src/DefaultWebRequest.cpp',
45 'src/FileSystemJsObject.cpp', 48 'src/FileSystemJsObject.cpp',
46 'src/FilterEngine.cpp', 49 'src/FilterEngine.cpp',
47 'src/GlobalJsObject.cpp', 50 'src/GlobalJsObject.cpp',
48 'src/JsContext.cpp', 51 'src/JsContext.cpp',
49 'src/JsEngine.cpp', 52 'src/JsEngine.cpp',
50 'src/JsError.cpp', 53 'src/JsError.cpp',
51 'src/JsValue.cpp', 54 'src/JsValue.cpp',
52 'src/Notification.cpp', 55 'src/Notification.cpp',
53 'src/ReferrerMapping.cpp', 56 'src/ReferrerMapping.cpp',
54 'src/Thread.cpp', 57 'src/Thread.cpp',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'test/WebRequest.cpp' 189 'test/WebRequest.cpp'
187 ], 190 ],
188 'msvs_settings': { 191 'msvs_settings': {
189 'VCLinkerTool': { 192 'VCLinkerTool': {
190 'SubSystem': '1', # Console 193 'SubSystem': '1', # Console
191 'EntryPointSymbol': 'mainCRTStartup', 194 'EntryPointSymbol': 'mainCRTStartup',
192 }, 195 },
193 }, 196 },
194 }] 197 }]
195 } 198 }
OLDNEW
« no previous file with comments | « include/AdblockPlus/WebRequest.h ('k') | src/DefaultWebRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld