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

Side by Side Diff: third_party/WebKit/Source/platform/blink_platform.gypi

Issue 2266443002: Optimize posting of WTF::Closure and improve scheduler test mocks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cut back to just the WTF::Closure fix plus the scheduler test mock refactor. Created 4 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
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'platform_generated.gypi', 3 'platform_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 'platform_files': [ 6 'platform_files': [
7 'AsyncFileSystemCallbacks.h', 7 'AsyncFileSystemCallbacks.h',
8 'CalculationValue.h', 8 'CalculationValue.h',
9 'CheckedInt.h', 9 'CheckedInt.h',
10 'ContentDecryptionModuleResult.h', 10 'ContentDecryptionModuleResult.h',
(...skipping 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 'mojo/KURLSecurityOriginTest.cpp', 1309 'mojo/KURLSecurityOriginTest.cpp',
1310 'network/EncodedFormDataTest.cpp', 1310 'network/EncodedFormDataTest.cpp',
1311 'network/HTTPParsersTest.cpp', 1311 'network/HTTPParsersTest.cpp',
1312 'network/LinkHeaderTest.cpp', 1312 'network/LinkHeaderTest.cpp',
1313 'network/NetworkUtilsTest.cpp', 1313 'network/NetworkUtilsTest.cpp',
1314 'network/ResourceRequestTest.cpp', 1314 'network/ResourceRequestTest.cpp',
1315 'network/ResourceResponseTest.cpp', 1315 'network/ResourceResponseTest.cpp',
1316 'scheduler/CancellableTaskFactoryTest.cpp', 1316 'scheduler/CancellableTaskFactoryTest.cpp',
1317 'scheduler/base/long_task_tracker_unittest.cc', 1317 'scheduler/base/long_task_tracker_unittest.cc',
1318 'scheduler/base/queueing_time_estimator_unittest.cc', 1318 'scheduler/base/queueing_time_estimator_unittest.cc',
1319 'scheduler/base/task_queue_manager_delegate_for_test.cc',
1320 'scheduler/base/task_queue_manager_unittest.cc', 1319 'scheduler/base/task_queue_manager_unittest.cc',
1321 'scheduler/base/task_queue_selector_unittest.cc', 1320 'scheduler/base/task_queue_selector_unittest.cc',
1322 'scheduler/base/test_count_uses_time_source.cc', 1321 'scheduler/base/test_count_uses_time_source.cc',
1323 'scheduler/base/test_time_source.cc',
1324 'scheduler/base/thread_load_tracker_unittest.cc', 1322 'scheduler/base/thread_load_tracker_unittest.cc',
1325 'scheduler/base/time_domain_unittest.cc', 1323 'scheduler/base/time_domain_unittest.cc',
1326 'scheduler/base/work_queue_sets_unittest.cc', 1324 'scheduler/base/work_queue_sets_unittest.cc',
1327 'scheduler/child/idle_helper_unittest.cc', 1325 'scheduler/child/idle_helper_unittest.cc',
1328 'scheduler/child/scheduler_helper_unittest.cc', 1326 'scheduler/child/scheduler_helper_unittest.cc',
1329 'scheduler/child/scheduler_tqm_delegate_for_test.cc',
1330 'scheduler/child/scheduler_tqm_delegate_impl_unittest.cc', 1327 'scheduler/child/scheduler_tqm_delegate_impl_unittest.cc',
1331 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc', 1328 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc',
1332 'scheduler/child/worker_scheduler_impl_unittest.cc', 1329 'scheduler/child/worker_scheduler_impl_unittest.cc',
1333 'scheduler/renderer/auto_advancing_virtual_time_domain_unittest.cc', 1330 'scheduler/renderer/auto_advancing_virtual_time_domain_unittest.cc',
1334 'scheduler/renderer/deadline_task_runner_unittest.cc', 1331 'scheduler/renderer/deadline_task_runner_unittest.cc',
1335 'scheduler/renderer/idle_time_estimator_unittest.cc', 1332 'scheduler/renderer/idle_time_estimator_unittest.cc',
1336 'scheduler/renderer/renderer_scheduler_impl_unittest.cc', 1333 'scheduler/renderer/renderer_scheduler_impl_unittest.cc',
1337 'scheduler/renderer/task_cost_estimator_unittest.cc', 1334 'scheduler/renderer/task_cost_estimator_unittest.cc',
1338 'scheduler/renderer/throttling_helper_unittest.cc', 1335 'scheduler/renderer/throttling_helper_unittest.cc',
1339 'scheduler/renderer/user_model_unittest.cc', 1336 'scheduler/renderer/user_model_unittest.cc',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 'graphics/DeferredImageDecoderTest.cpp', 1371 'graphics/DeferredImageDecoderTest.cpp',
1375 'graphics/GraphicsLayerTest.cpp', 1372 'graphics/GraphicsLayerTest.cpp',
1376 'graphics/ImageDecodingStoreTest.cpp', 1373 'graphics/ImageDecodingStoreTest.cpp',
1377 'graphics/ImageFrameGeneratorTest.cpp', 1374 'graphics/ImageFrameGeneratorTest.cpp',
1378 'graphics/ImageLayerChromiumTest.cpp', 1375 'graphics/ImageLayerChromiumTest.cpp',
1379 'graphics/test/FakeGLES2Interface.h', 1376 'graphics/test/FakeGLES2Interface.h',
1380 'graphics/test/FakeWebGraphicsContext3DProvider.h', 1377 'graphics/test/FakeWebGraphicsContext3DProvider.h',
1381 'graphics/test/MockImageDecoder.h', 1378 'graphics/test/MockImageDecoder.h',
1382 ], 1379 ],
1383 'platform_test_support_files': [ 1380 'platform_test_support_files': [
1381 'scheduler/base/task_queue_manager_delegate_for_test.cc',
1382 'scheduler/base/test_time_source.cc',
1383 'scheduler/child/scheduler_tqm_delegate_for_test.cc',
1384 'scheduler/test/fake_renderer_scheduler.cc', 1384 'scheduler/test/fake_renderer_scheduler.cc',
1385 'scheduler/test/fake_web_task_runner.cc',
1386 'scheduler/test/fake_web_task_runner.h',
1385 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc', 1387 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc',
1386 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h', 1388 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h',
1387 'scheduler/test/renderer_scheduler_test_support.cc', 1389 'scheduler/test/renderer_scheduler_test_support.cc',
1388 'scroll/ScrollbarTestSuite.h', 1390 'scroll/ScrollbarTestSuite.h',
1389 'testing/CompositorTest.cpp', 1391 'testing/CompositorTest.cpp',
1390 'testing/CompositorTest.h', 1392 'testing/CompositorTest.h',
1391 'testing/FakeDisplayItemClient.h', 1393 'testing/FakeDisplayItemClient.h',
1392 'testing/FakeGraphicsLayer.h', 1394 'testing/FakeGraphicsLayer.h',
1393 'testing/FakeGraphicsLayerClient.h', 1395 'testing/FakeGraphicsLayerClient.h',
1394 'testing/FontTestHelpers.cpp', 1396 'testing/FontTestHelpers.cpp',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
1454 ['use_default_render_theme==1', 1456 ['use_default_render_theme==1',
1455 { 1457 {
1456 'platform_test_files': [ 1458 'platform_test_files': [
1457 'scroll/ScrollbarThemeAuraTest.cpp', 1459 'scroll/ScrollbarThemeAuraTest.cpp',
1458 ], 1460 ],
1459 } 1461 }
1460 ], 1462 ],
1461 ], 1463 ],
1462 }, 1464 },
1463 } 1465 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698