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

Side by Side Diff: libadblockplus.gyp

Issue 6233220328718336: Issue #3593, #1197- fix isolate management (Closed)
Patch Set: rebase fix v8 initialization Created May 20, 2016, 3:22 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 | « include/AdblockPlus/JsEngine.h ('k') | src/JsContext.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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 }] 157 }]
158 }, 158 },
159 { 159 {
160 'target_name': 'tests', 160 'target_name': 'tests',
161 'type': 'executable', 161 'type': 'executable',
162 'dependencies': [ 162 'dependencies': [
163 'third_party/googletest.gyp:googletest_main', 163 'third_party/googletest.gyp:googletest_main',
164 'libadblockplus' 164 'libadblockplus'
165 ], 165 ],
166 'sources': [ 166 'sources': [
167 'test/BaseJsTest.h',
168 'test/BaseJsTest.cpp',
167 'test/AppInfoJsObject.cpp', 169 'test/AppInfoJsObject.cpp',
168 'test/ConsoleJsObject.cpp', 170 'test/ConsoleJsObject.cpp',
169 'test/DefaultFileSystem.cpp', 171 'test/DefaultFileSystem.cpp',
170 'test/FileSystemJsObject.cpp', 172 'test/FileSystemJsObject.cpp',
171 'test/FilterEngine.cpp', 173 'test/FilterEngine.cpp',
172 'test/GlobalJsObject.cpp', 174 'test/GlobalJsObject.cpp',
173 'test/JsEngine.cpp', 175 'test/JsEngine.cpp',
174 'test/JsValue.cpp', 176 'test/JsValue.cpp',
175 'test/Notification.cpp', 177 'test/Notification.cpp',
176 'test/Prefs.cpp', 178 'test/Prefs.cpp',
177 'test/ReferrerMapping.cpp', 179 'test/ReferrerMapping.cpp',
178 'test/Thread.cpp', 180 'test/Thread.cpp',
179 'test/UpdateCheck.cpp', 181 'test/UpdateCheck.cpp',
180 'test/WebRequest.cpp' 182 'test/WebRequest.cpp'
181 ], 183 ],
182 'msvs_settings': { 184 'msvs_settings': {
183 'VCLinkerTool': { 185 'VCLinkerTool': {
184 'SubSystem': '1', # Console 186 'SubSystem': '1', # Console
185 'EntryPointSymbol': 'mainCRTStartup', 187 'EntryPointSymbol': 'mainCRTStartup',
186 }, 188 },
187 }, 189 },
188 }] 190 }]
189 } 191 }
OLDNEW
« no previous file with comments | « include/AdblockPlus/JsEngine.h ('k') | src/JsContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld