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

Side by Side Diff: libadblockplus.gyp

Issue 29499592: Issue 5183 - remove synchronous FileSystem interface and stop exposing of DefaultFileSystem (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created July 27, 2017, 9:17 a.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/JsEngine.h ('k') | src/DefaultFileSystem.h » ('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 {
11 'variables': { 11 'variables': {
12 'have_curl': '<!(python check_curl.py)' 12 'have_curl': '<!(python check_curl.py)'
13 } 13 }
14 } 14 }
15 ]], 15 ]],
16 'includes': ['v8.gypi', 'shell/shell.gyp'], 16 'includes': ['v8.gypi', 'shell/shell.gyp'],
17 'targets': [{ 17 'targets': [{
18 'target_name': 'libadblockplus', 18 'target_name': 'libadblockplus',
19 'type': '<(library)', 19 'type': '<(library)',
20 'dependencies': ['<@(libv8_build_targets)'], 20 'dependencies': ['<@(libv8_build_targets)'],
21 'xcode_settings':{}, 21 'xcode_settings':{},
22 'include_dirs': [ 22 'include_dirs': [
23 'include', 23 'include',
24 '<(libv8_include_dir)' 24 '<(libv8_include_dir)'
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 'include/AdblockPlus/ITimer.h', 27 'include/AdblockPlus/ITimer.h',
28 'include/AdblockPlus/IWebRequest.h', 28 'include/AdblockPlus/IWebRequest.h',
29 'include/AdblockPlus/IFileSystem.h', 29 'include/AdblockPlus/IFileSystem.h',
30 'include/AdblockPlus/DefaultFileSystem.h',
31 'src/AppInfoJsObject.cpp', 30 'src/AppInfoJsObject.cpp',
32 'src/ConsoleJsObject.cpp', 31 'src/ConsoleJsObject.cpp',
33 'src/DefaultLogSystem.cpp', 32 'src/DefaultLogSystem.cpp',
33 'src/DefaultFileSystem.h',
34 'src/DefaultFileSystem.cpp', 34 'src/DefaultFileSystem.cpp',
35 'src/DefaultTimer.cpp', 35 'src/DefaultTimer.cpp',
36 'src/DefaultTimer.h', 36 'src/DefaultTimer.h',
37 'src/DefaultWebRequest.h', 37 'src/DefaultWebRequest.h',
38 'src/DefaultWebRequest.cpp', 38 'src/DefaultWebRequest.cpp',
39 'src/FileSystemJsObject.cpp', 39 'src/FileSystemJsObject.cpp',
40 'src/FilterEngine.cpp', 40 'src/FilterEngine.cpp',
41 'src/GlobalJsObject.cpp', 41 'src/GlobalJsObject.cpp',
42 'src/JsContext.cpp', 42 'src/JsContext.cpp',
43 'src/JsEngine.cpp', 43 'src/JsEngine.cpp',
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 'test/WebRequest.cpp' 201 'test/WebRequest.cpp'
202 ], 202 ],
203 'msvs_settings': { 203 'msvs_settings': {
204 'VCLinkerTool': { 204 'VCLinkerTool': {
205 'SubSystem': '1', # Console 205 'SubSystem': '1', # Console
206 'EntryPointSymbol': 'mainCRTStartup', 206 'EntryPointSymbol': 'mainCRTStartup',
207 }, 207 },
208 }, 208 },
209 }] 209 }]
210 } 210 }
OLDNEW
« no previous file with comments | « include/AdblockPlus/JsEngine.h ('k') | src/DefaultFileSystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld