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: Remove a #include Utils.h from test. Created June 2, 2017, 7:38 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 20 matching lines...) Expand all
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', 39 'include/AdblockPlus/IWebRequest.h',
40 'include/AdblockPlus/DefaultWebRequest.h', 40 'include/AdblockPlus/DefaultWebRequest.h',
41 'include/AdblockPlus/IFileSystem.h',
42 'include/AdblockPlus/DefaultFileSystem.h',
41 'src/AppInfoJsObject.cpp', 43 'src/AppInfoJsObject.cpp',
42 'src/ConsoleJsObject.cpp', 44 'src/ConsoleJsObject.cpp',
43 'src/DefaultLogSystem.cpp', 45 'src/DefaultLogSystem.cpp',
44 'src/DefaultFileSystem.cpp', 46 'src/DefaultFileSystem.cpp',
45 'src/DefaultTimer.cpp', 47 'src/DefaultTimer.cpp',
46 'src/DefaultTimer.h', 48 'src/DefaultTimer.h',
47 'src/DefaultWebRequest.cpp', 49 'src/DefaultWebRequest.cpp',
48 'src/FileSystemJsObject.cpp', 50 'src/FileSystemJsObject.cpp',
49 'src/FilterEngine.cpp', 51 'src/FilterEngine.cpp',
50 'src/GlobalJsObject.cpp', 52 'src/GlobalJsObject.cpp',
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 'test/WebRequest.cpp' 191 'test/WebRequest.cpp'
190 ], 192 ],
191 'msvs_settings': { 193 'msvs_settings': {
192 'VCLinkerTool': { 194 'VCLinkerTool': {
193 'SubSystem': '1', # Console 195 'SubSystem': '1', # Console
194 'EntryPointSymbol': 'mainCRTStartup', 196 'EntryPointSymbol': 'mainCRTStartup',
195 }, 197 },
196 }, 198 },
197 }] 199 }]
198 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld