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: Updated patch after review. Created June 16, 2017, 9:52 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
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'xcode_settings':{}, 50 'xcode_settings':{},
51 'include_dirs': [ 51 'include_dirs': [
52 'include', 52 'include',
53 'third_party/v8/include', 53 'third_party/v8/include',
54 'third_party/v8', 54 'third_party/v8',
55 ], 55 ],
56 'sources': [ 56 'sources': [
57 'include/AdblockPlus/ITimer.h', 57 'include/AdblockPlus/ITimer.h',
58 'include/AdblockPlus/IWebRequest.h', 58 'include/AdblockPlus/IWebRequest.h',
59 'include/AdblockPlus/DefaultWebRequest.h', 59 'include/AdblockPlus/DefaultWebRequest.h',
60 'include/AdblockPlus/IFileSystem.h',
61 'include/AdblockPlus/DefaultFileSystem.h',
60 'src/AppInfoJsObject.cpp', 62 'src/AppInfoJsObject.cpp',
61 'src/ConsoleJsObject.cpp', 63 'src/ConsoleJsObject.cpp',
62 'src/DefaultLogSystem.cpp', 64 'src/DefaultLogSystem.cpp',
63 'src/DefaultFileSystem.cpp', 65 'src/DefaultFileSystem.cpp',
64 'src/DefaultTimer.cpp', 66 'src/DefaultTimer.cpp',
65 'src/DefaultTimer.h', 67 'src/DefaultTimer.h',
66 'src/DefaultWebRequest.cpp', 68 'src/DefaultWebRequest.cpp',
67 'src/FileSystemJsObject.cpp', 69 'src/FileSystemJsObject.cpp',
68 'src/FilterEngine.cpp', 70 'src/FilterEngine.cpp',
69 'src/GlobalJsObject.cpp', 71 'src/GlobalJsObject.cpp',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 'test/WebRequest.cpp' 241 'test/WebRequest.cpp'
240 ], 242 ],
241 'msvs_settings': { 243 'msvs_settings': {
242 'VCLinkerTool': { 244 'VCLinkerTool': {
243 'SubSystem': '1', # Console 245 'SubSystem': '1', # Console
244 'EntryPointSymbol': 'mainCRTStartup', 246 'EntryPointSymbol': 'mainCRTStartup',
245 }, 247 },
246 }, 248 },
247 }] 249 }]
248 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld