Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: Source/web/web.gypi

Issue 1313013005: Add a test that we resume commits after inserting the body. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove extra incs. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'web_files': [ 3 'web_files': [
4 'AssertMatchingEnums.cpp', 4 'AssertMatchingEnums.cpp',
5 'AssociatedURLLoader.cpp', 5 'AssociatedURLLoader.cpp',
6 'AssociatedURLLoader.h', 6 'AssociatedURLLoader.h',
7 'ChromeClientImpl.cpp', 7 'ChromeClientImpl.cpp',
8 'ChromeClientImpl.h', 8 'ChromeClientImpl.h',
9 'ColorChooserPopupUIController.cpp', 9 'ColorChooserPopupUIController.cpp',
10 'ColorChooserPopupUIController.h', 10 'ColorChooserPopupUIController.h',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 'WebDragDataTest.cpp', 262 'WebDragDataTest.cpp',
263 'WebEmbeddedWorkerImplTest.cpp', 263 'WebEmbeddedWorkerImplTest.cpp',
264 'WebNodeTest.cpp', 264 'WebNodeTest.cpp',
265 'WebElementTest.cpp', 265 'WebElementTest.cpp',
266 # FIXME: Move the tests from web/tests/ to appropriate places. 266 # FIXME: Move the tests from web/tests/ to appropriate places.
267 # crbug.com/353585 267 # crbug.com/353585
268 'tests/ActivityLoggerTest.cpp', 268 'tests/ActivityLoggerTest.cpp',
269 'tests/ChromeClientImplTest.cpp', 269 'tests/ChromeClientImplTest.cpp',
270 'tests/CustomEventTest.cpp', 270 'tests/CustomEventTest.cpp',
271 'tests/DocumentLoaderTest.cpp', 271 'tests/DocumentLoaderTest.cpp',
272 'tests/DocumentLoadingRenderingTest.cpp',
272 'tests/FakeWebPlugin.cpp', 273 'tests/FakeWebPlugin.cpp',
273 'tests/FakeWebPlugin.h', 274 'tests/FakeWebPlugin.h',
274 'tests/FrameLoaderClientImplTest.cpp', 275 'tests/FrameLoaderClientImplTest.cpp',
275 'tests/FrameTestHelpers.cpp', 276 'tests/FrameTestHelpers.cpp',
276 'tests/FrameTestHelpers.h', 277 'tests/FrameTestHelpers.h',
277 'tests/ImeOnFocusTest.cpp', 278 'tests/ImeOnFocusTest.cpp',
278 'tests/KeyboardTest.cpp', 279 'tests/KeyboardTest.cpp',
279 'tests/ListenerLeakTest.cpp', 280 'tests/ListenerLeakTest.cpp',
280 'tests/MHTMLTest.cpp', 281 'tests/MHTMLTest.cpp',
281 'tests/OpenTypeVerticalDataTest.cpp', 282 'tests/OpenTypeVerticalDataTest.cpp',
(...skipping 19 matching lines...) Expand all
301 'tests/WebPageSerializerTest.cpp', 302 'tests/WebPageSerializerTest.cpp',
302 'tests/WebPluginContainerTest.cpp', 303 'tests/WebPluginContainerTest.cpp',
303 'tests/WebScopedWindowFocusAllowedIndicatorTest.cpp', 304 'tests/WebScopedWindowFocusAllowedIndicatorTest.cpp',
304 'tests/WebSearchableFormDataTest.cpp', 305 'tests/WebSearchableFormDataTest.cpp',
305 'tests/WebSelectorTest.cpp', 306 'tests/WebSelectorTest.cpp',
306 'tests/WebURLRequestTest.cpp', 307 'tests/WebURLRequestTest.cpp',
307 'tests/WebURLResponseTest.cpp', 308 'tests/WebURLResponseTest.cpp',
308 'tests/WebUnitTests.cpp', 309 'tests/WebUnitTests.cpp',
309 'tests/WebUserGestureTokenTest.cpp', 310 'tests/WebUserGestureTokenTest.cpp',
310 'tests/WebViewTest.cpp', 311 'tests/WebViewTest.cpp',
312 'tests/mocks/MockNetwork.cpp',
313 'tests/mocks/MockNetwork.h',
314 'tests/mocks/MockRequest.cpp',
315 'tests/mocks/MockRequest.h',
316 'tests/mocks/MockWebViewClient.cpp',
317 'tests/mocks/MockWebViewClient.h',
318 'tests/mocks/MockLayerTreeView.cpp',
319 'tests/mocks/MockLayerTreeView.h',
311 ], 320 ],
312 'conditions': [ 321 'conditions': [
313 ['OS=="win"', 322 ['OS=="win"',
314 { 323 {
315 'web_unittest_files': [ 324 'web_unittest_files': [
316 'tests/WebPageSerializerTest.cpp', 325 'tests/WebPageSerializerTest.cpp',
317 ], 326 ],
318 } 327 }
319 ], 328 ],
320 ['OS!="mac"', 329 ['OS!="mac"',
321 { 330 {
322 'web_unittest_files': [ 331 'web_unittest_files': [
323 # Mac uses ScrollAnimatorMac instead of ScrollAnimatorNone. 332 # Mac uses ScrollAnimatorMac instead of ScrollAnimatorNone.
324 'tests/ScrollAnimatorNoneTest.cpp', 333 'tests/ScrollAnimatorNoneTest.cpp',
325 ], 334 ],
326 } 335 }
327 ], 336 ],
328 ], 337 ],
329 }, 338 },
330 } 339 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698