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

Side by Side Diff: libadblockplus.gyp

Issue 29369365: Issue #4692 - Rewrite `SetTimeout` facility to avoid `JsValuePtr` and `JsValueList`
Patch Set: Created Dec. 19, 2016, 10:24 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 30 matching lines...) Expand all
41 'include/AdblockPlus/DefaultLogSystem.h', 41 'include/AdblockPlus/DefaultLogSystem.h',
42 'include/AdblockPlus/DefaultWebRequest.h', 42 'include/AdblockPlus/DefaultWebRequest.h',
43 'include/AdblockPlus/FileSystem.h', 43 'include/AdblockPlus/FileSystem.h',
44 'include/AdblockPlus/FilterEngine.h', 44 'include/AdblockPlus/FilterEngine.h',
45 'include/AdblockPlus/JsEngine.h', 45 'include/AdblockPlus/JsEngine.h',
46 'include/AdblockPlus/JsValue.h', 46 'include/AdblockPlus/JsValue.h',
47 'include/AdblockPlus/LogSystem.h', 47 'include/AdblockPlus/LogSystem.h',
48 'include/AdblockPlus/Notification.h', 48 'include/AdblockPlus/Notification.h',
49 'include/AdblockPlus/ReferrerMapping.h', 49 'include/AdblockPlus/ReferrerMapping.h',
50 'include/AdblockPlus/WebRequest.h', 50 'include/AdblockPlus/WebRequest.h',
51 'src/AllocatedArray.h',
51 'src/AppInfoJsObject.cpp', 52 'src/AppInfoJsObject.cpp',
52 'src/AppInfoJsObject.h', 53 'src/AppInfoJsObject.h',
53 'src/ConsoleJsObject.cpp', 54 'src/ConsoleJsObject.cpp',
54 'src/ConsoleJsObject.h', 55 'src/ConsoleJsObject.h',
55 'src/DefaultLogSystem.cpp', 56 'src/DefaultLogSystem.cpp',
56 'src/DefaultFileSystem.cpp', 57 'src/DefaultFileSystem.cpp',
57 'src/DefaultWebRequestWinInet.h', 58 'src/DefaultWebRequestWinInet.h',
58 'src/FileSystemJsObject.cpp', 59 'src/FileSystemJsObject.cpp',
59 'src/FileSystemJsObject.h', 60 'src/FileSystemJsObject.h',
60 'src/FilterEngine.cpp', 61 'src/FilterEngine.cpp',
61 'src/GlobalJsObject.cpp', 62 'src/GlobalJsObject.cpp',
62 'src/GlobalJsObject.h', 63 'src/GlobalJsObject.h',
63 'src/JsContext.cpp', 64 'src/JsContext.cpp',
64 'src/JsContext.h', 65 'src/JsContext.h',
65 'src/JsEngine.cpp', 66 'src/JsEngine.cpp',
67 'src/JsEngineInternal.h',
68 'src/JsEngineTransition.h',
66 'src/JsError.cpp', 69 'src/JsError.cpp',
67 'src/JsError.h', 70 'src/JsError.h',
68 'src/JsValue.cpp', 71 'src/JsValue.cpp',
69 'src/Notification.cpp', 72 'src/Notification.cpp',
70 'src/ReferrerMapping.cpp', 73 'src/ReferrerMapping.cpp',
71 'src/Scheduler.cpp', 74 'src/Scheduler.cpp',
72 'src/Scheduler.h', 75 'src/Scheduler.h',
73 'src/Utils.cpp', 76 'src/Utils.cpp',
74 'src/Utils.h', 77 'src/Utils.h',
78 'src/V8Upgrade.h',
75 'src/WebRequestJsObject.cpp', 79 'src/WebRequestJsObject.cpp',
76 'src/WebRequestJsObject.h', 80 'src/WebRequestJsObject.h',
77 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' 81 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp'
78 ], 82 ],
79 'direct_dependent_settings': { 83 'direct_dependent_settings': {
80 'include_dirs': ['include'] 84 'include_dirs': ['include']
81 }, 85 },
82 'conditions': [ 86 'conditions': [
83 ['OS=="android"', { 87 ['OS=="android"', {
84 'link_settings': { 88 'link_settings': {
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'test/WebRequest.cpp' 210 'test/WebRequest.cpp'
207 ], 211 ],
208 'msvs_settings': { 212 'msvs_settings': {
209 'VCLinkerTool': { 213 'VCLinkerTool': {
210 'SubSystem': '1', # Console 214 'SubSystem': '1', # Console
211 'EntryPointSymbol': 'mainCRTStartup', 215 'EntryPointSymbol': 'mainCRTStartup',
212 }, 216 },
213 }, 217 },
214 }] 218 }]
215 } 219 }
OLDNEW
« no previous file with comments | « include/AdblockPlus/JsEngine.h ('k') | src/AllocatedArray.h » ('j') | src/GlobalJsObject.cpp » ('J')

Powered by Google App Engine
This is Rietveld