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

Side by Side Diff: libadblockplus.gyp

Issue 29369520: Issue #4692 - Rewrite web request task to avoid engine self-reference
Patch Set: Created Dec. 24, 2016, 4:58 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 | « no previous file | src/GlobalJsObject.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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'src/JsEngineTransition.h', 68 'src/JsEngineTransition.h',
69 'src/JsError.cpp', 69 'src/JsError.cpp',
70 'src/JsError.h', 70 'src/JsError.h',
71 'src/JsValue.cpp', 71 'src/JsValue.cpp',
72 'src/Notification.cpp', 72 'src/Notification.cpp',
73 'src/ReferrerMapping.cpp', 73 'src/ReferrerMapping.cpp',
74 'src/Scheduler.cpp', 74 'src/Scheduler.cpp',
75 'src/Scheduler.h', 75 'src/Scheduler.h',
76 'src/Utils.cpp', 76 'src/Utils.cpp',
77 'src/Utils.h', 77 'src/Utils.h',
78 'src/Value.h',
78 'src/V8Upgrade.h', 79 'src/V8Upgrade.h',
79 'src/WebRequestJsObject.cpp', 80 'src/WebRequestJsObject.cpp',
80 'src/WebRequestJsObject.h', 81 'src/WebRequestJsObject.h',
81 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' 82 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp'
82 ], 83 ],
83 'direct_dependent_settings': { 84 'direct_dependent_settings': {
84 'include_dirs': ['include'] 85 'include_dirs': ['include']
85 }, 86 },
86 'conditions': [ 87 'conditions': [
87 ['OS=="android"', { 88 ['OS=="android"', {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'test/WebRequest.cpp' 211 'test/WebRequest.cpp'
211 ], 212 ],
212 'msvs_settings': { 213 'msvs_settings': {
213 'VCLinkerTool': { 214 'VCLinkerTool': {
214 'SubSystem': '1', # Console 215 'SubSystem': '1', # Console
215 'EntryPointSymbol': 'mainCRTStartup', 216 'EntryPointSymbol': 'mainCRTStartup',
216 }, 217 },
217 }, 218 },
218 }] 219 }]
219 } 220 }
OLDNEW
« no previous file with comments | « no previous file | src/GlobalJsObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld