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

Side by Side Diff: libadblockplus.gyp

Issue 29372702: Issue #4826 - Use latch to replace thread-sleeping in tests
Patch Set: stray comments Created Jan. 20, 2017, 1:29 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/Latch.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 {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'src/DefaultFileSystem.cpp', 42 'src/DefaultFileSystem.cpp',
43 'src/FileSystemJsObject.cpp', 43 'src/FileSystemJsObject.cpp',
44 'src/FilterEngine.cpp', 44 'src/FilterEngine.cpp',
45 'src/GlobalJsObject.cpp', 45 'src/GlobalJsObject.cpp',
46 'src/JsContext.cpp', 46 'src/JsContext.cpp',
47 'src/JsEngine.cpp', 47 'src/JsEngine.cpp',
48 'src/JsEngineInternal.h', 48 'src/JsEngineInternal.h',
49 'src/JsEngineTransition.h', 49 'src/JsEngineTransition.h',
50 'src/JsError.cpp', 50 'src/JsError.cpp',
51 'src/JsValue.cpp', 51 'src/JsValue.cpp',
52 'src/Latch.cpp',
53 'src/Latch.h',
52 'src/Notification.cpp', 54 'src/Notification.cpp',
53 'src/ReferrerMapping.cpp', 55 'src/ReferrerMapping.cpp',
54 'src/Scheduler.cpp', 56 'src/Scheduler.cpp',
55 'src/Timeout.cpp', 57 'src/Timeout.cpp',
56 'src/Timeout.h', 58 'src/Timeout.h',
57 'src/Utils.cpp', 59 'src/Utils.cpp',
58 'src/Value.h', 60 'src/Value.h',
59 'src/V8Upgrade.h', 61 'src/V8Upgrade.h',
60 'src/WebRequestJsObject.cpp', 62 'src/WebRequestJsObject.cpp',
61 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp' 63 '<(INTERMEDIATE_DIR)/adblockplus.js.cpp'
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 'test/BaseJsTest.h', 177 'test/BaseJsTest.h',
176 'test/BaseJsTest.cpp', 178 'test/BaseJsTest.cpp',
177 'test/AppInfoJsObject.cpp', 179 'test/AppInfoJsObject.cpp',
178 'test/ConsoleJsObject.cpp', 180 'test/ConsoleJsObject.cpp',
179 'test/DefaultFileSystem.cpp', 181 'test/DefaultFileSystem.cpp',
180 'test/FileSystemJsObject.cpp', 182 'test/FileSystemJsObject.cpp',
181 'test/FilterEngine.cpp', 183 'test/FilterEngine.cpp',
182 'test/GlobalJsObject.cpp', 184 'test/GlobalJsObject.cpp',
183 'test/JsEngine.cpp', 185 'test/JsEngine.cpp',
184 'test/JsValue.cpp', 186 'test/JsValue.cpp',
187 'test/JsLatch.cpp',
188 'test/JsLatch.h',
189 'test/LatchTest.cpp',
185 'test/Notification.cpp', 190 'test/Notification.cpp',
186 'test/PausePoint.cpp', 191 'test/PausePoint.cpp',
187 'test/PausePoint.h', 192 'test/PausePoint.h',
188 'test/Prefs.cpp', 193 'test/Prefs.cpp',
189 'test/ReferrerMapping.cpp', 194 'test/ReferrerMapping.cpp',
190 'test/SchedulerTest.cpp', 195 'test/SchedulerTest.cpp',
191 'test/TimeoutTest.cpp', 196 'test/TimeoutTest.cpp',
192 'test/UpdateCheck.cpp', 197 'test/UpdateCheck.cpp',
193 'test/WebRequest.cpp' 198 'test/WebRequest.cpp'
194 ], 199 ],
195 'msvs_settings': { 200 'msvs_settings': {
196 'VCLinkerTool': { 201 'VCLinkerTool': {
197 'SubSystem': '1', # Console 202 'SubSystem': '1', # Console
198 'EntryPointSymbol': 'mainCRTStartup', 203 'EntryPointSymbol': 'mainCRTStartup',
199 }, 204 },
200 }, 205 },
201 }] 206 }]
202 } 207 }
OLDNEW
« no previous file with comments | « no previous file | src/Latch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld