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

Side by Side Diff: libadblockplus.gyp

Issue 29449592: Issue 5183 - Provide async interface for FileSystem (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Rebase on master. Last changes. Created July 7, 2017, 1:36 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/JsValue.h ('k') | src/DefaultFileSystem.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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'xcode_settings':{}, 51 'xcode_settings':{},
52 'include_dirs': [ 52 'include_dirs': [
53 'include', 53 'include',
54 'third_party/v8/include', 54 'third_party/v8/include',
55 'third_party/v8', 55 'third_party/v8',
56 ], 56 ],
57 'sources': [ 57 'sources': [
58 'include/AdblockPlus/ITimer.h', 58 'include/AdblockPlus/ITimer.h',
59 'include/AdblockPlus/IWebRequest.h', 59 'include/AdblockPlus/IWebRequest.h',
60 'include/AdblockPlus/DefaultWebRequest.h', 60 'include/AdblockPlus/DefaultWebRequest.h',
61 'include/AdblockPlus/IFileSystem.h',
62 'include/AdblockPlus/DefaultFileSystem.h',
61 'src/AppInfoJsObject.cpp', 63 'src/AppInfoJsObject.cpp',
62 'src/ConsoleJsObject.cpp', 64 'src/ConsoleJsObject.cpp',
63 'src/DefaultLogSystem.cpp', 65 'src/DefaultLogSystem.cpp',
64 'src/DefaultFileSystem.cpp', 66 'src/DefaultFileSystem.cpp',
65 'src/DefaultTimer.cpp', 67 'src/DefaultTimer.cpp',
66 'src/DefaultTimer.h', 68 'src/DefaultTimer.h',
67 'src/DefaultWebRequest.cpp', 69 'src/DefaultWebRequest.cpp',
68 'src/FileSystemJsObject.cpp', 70 'src/FileSystemJsObject.cpp',
69 'src/FilterEngine.cpp', 71 'src/FilterEngine.cpp',
70 'src/GlobalJsObject.cpp', 72 'src/GlobalJsObject.cpp',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'test/WebRequest.cpp' 242 'test/WebRequest.cpp'
241 ], 243 ],
242 'msvs_settings': { 244 'msvs_settings': {
243 'VCLinkerTool': { 245 'VCLinkerTool': {
244 'SubSystem': '1', # Console 246 'SubSystem': '1', # Console
245 'EntryPointSymbol': 'mainCRTStartup', 247 'EntryPointSymbol': 'mainCRTStartup',
246 }, 248 },
247 }, 249 },
248 }] 250 }]
249 } 251 }
OLDNEW
« no previous file with comments | « include/AdblockPlus/JsValue.h ('k') | src/DefaultFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld