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

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

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 'peerconnection/RTCSessionDescriptionRequest.h', 940 'peerconnection/RTCSessionDescriptionRequest.h',
941 'peerconnection/RTCStatsRequest.h', 941 'peerconnection/RTCStatsRequest.h',
942 'peerconnection/RTCStatsResponseBase.h', 942 'peerconnection/RTCStatsResponseBase.h',
943 'peerconnection/RTCVoidRequest.h', 943 'peerconnection/RTCVoidRequest.h',
944 'plugins/PluginData.cpp', 944 'plugins/PluginData.cpp',
945 'plugins/PluginData.h', 945 'plugins/PluginData.h',
946 'plugins/PluginListBuilder.cpp', 946 'plugins/PluginListBuilder.cpp',
947 'plugins/PluginListBuilder.h', 947 'plugins/PluginListBuilder.h',
948 'scheduler/CancellableTaskFactory.cpp', 948 'scheduler/CancellableTaskFactory.cpp',
949 'scheduler/CancellableTaskFactory.h', 949 'scheduler/CancellableTaskFactory.h',
950 'scheduler/base/cancelable_closure_holder.cc',
951 'scheduler/base/cancelable_closure_holder.h',
952 'scheduler/base/enqueue_order.cc',
953 'scheduler/base/enqueue_order.h',
954 'scheduler/base/lazy_now.cc',
955 'scheduler/base/lazy_now.h',
956 'scheduler/base/long_task_tracker.cc',
957 'scheduler/base/long_task_tracker.h',
958 'scheduler/base/pollable_thread_safe_flag.cc',
959 'scheduler/base/pollable_thread_safe_flag.h',
960 'scheduler/base/queueing_time_estimator.cc',
961 'scheduler/base/queueing_time_estimator.h',
962 'scheduler/base/real_time_domain.cc',
963 'scheduler/base/real_time_domain.h',
964 'scheduler/base/task_queue_impl.cc',
965 'scheduler/base/task_queue_impl.h',
966 'scheduler/base/task_queue_manager.cc',
967 'scheduler/base/task_queue_manager.h',
968 'scheduler/base/task_queue_manager_delegate.h',
969 'scheduler/base/task_queue_selector.cc',
970 'scheduler/base/task_queue_selector.h',
971 'scheduler/base/task_time_tracker.h',
972 'scheduler/base/time_domain.cc',
973 'scheduler/base/time_domain.h',
974 'scheduler/base/virtual_time_domain.cc',
975 'scheduler/base/virtual_time_domain.h',
976 'scheduler/base/work_queue.cc',
977 'scheduler/base/work_queue.h',
978 'scheduler/base/work_queue_sets.cc',
979 'scheduler/base/work_queue_sets.h',
980 'scheduler/CancellableTaskFactory.h',
981 'scheduler/child/compositor_worker_scheduler.cc',
982 'scheduler/child/idle_helper.cc',
983 'scheduler/child/idle_helper.h',
984 'scheduler/child/scheduler_helper.cc',
985 'scheduler/child/scheduler_helper.h',
986 'scheduler/child/scheduler_tqm_delegate.h',
987 'scheduler/child/scheduler_tqm_delegate_impl.cc',
988 'scheduler/child/scheduler_tqm_delegate_impl.h',
989 'scheduler/child/single_thread_idle_task_runner.cc',
990 'scheduler/child/web_scheduler_impl.cc',
991 'scheduler/child/web_scheduler_impl.h',
992 'scheduler/child/web_task_runner_impl.cc',
993 'scheduler/child/web_task_runner_impl.h',
994 'scheduler/child/webthread_base.cc',
995 'scheduler/child/webthread_impl_for_worker_scheduler.cc',
996 'scheduler/child/worker_scheduler.cc',
997 'scheduler/child/worker_scheduler_impl.cc',
998 'scheduler/child/worker_scheduler_impl.h',
999 'scheduler/renderer/auto_advancing_virtual_time_domain.cc',
1000 'scheduler/renderer/auto_advancing_virtual_time_domain.h',
1001 'scheduler/renderer/deadline_task_runner.cc',
1002 'scheduler/renderer/deadline_task_runner.h',
1003 'scheduler/renderer/idle_time_estimator.cc',
1004 'scheduler/renderer/idle_time_estimator.h',
1005 'scheduler/renderer/renderer_scheduler.cc',
1006 'scheduler/renderer/renderer_scheduler_impl.cc',
1007 'scheduler/renderer/renderer_scheduler_impl.h',
1008 'scheduler/renderer/renderer_web_scheduler_impl.cc',
1009 'scheduler/renderer/renderer_web_scheduler_impl.h',
1010 'scheduler/renderer/render_widget_scheduling_state.cc',
1011 'scheduler/renderer/render_widget_signals.cc',
1012 'scheduler/renderer/render_widget_signals.h',
1013 'scheduler/renderer/task_cost_estimator.cc',
1014 'scheduler/renderer/task_cost_estimator.h',
1015 'scheduler/renderer/throttled_time_domain.cc',
1016 'scheduler/renderer/throttled_time_domain.h',
1017 'scheduler/renderer/throttling_helper.cc',
1018 'scheduler/renderer/throttling_helper.h',
1019 'scheduler/renderer/user_model.cc',
1020 'scheduler/renderer/user_model.h',
1021 'scheduler/renderer/web_frame_scheduler_impl.cc',
1022 'scheduler/renderer/web_frame_scheduler_impl.h',
1023 'scheduler/renderer/webthread_impl_for_renderer_scheduler.cc',
1024 'scheduler/renderer/webthread_impl_for_renderer_scheduler.h',
1025 'scheduler/renderer/web_view_scheduler_impl.cc',
1026 'scheduler/renderer/web_view_scheduler_impl.h',
1027 'scheduler/utility/webthread_impl_for_utility_thread.cc',
950 'scroll/MainThreadScrollingReason.h', 1028 'scroll/MainThreadScrollingReason.h',
951 'scroll/ProgrammaticScrollAnimator.cpp', 1029 'scroll/ProgrammaticScrollAnimator.cpp',
952 'scroll/ProgrammaticScrollAnimator.h', 1030 'scroll/ProgrammaticScrollAnimator.h',
953 'scroll/ScrollAnimatorBase.cpp', 1031 'scroll/ScrollAnimatorBase.cpp',
954 'scroll/ScrollAnimatorBase.h', 1032 'scroll/ScrollAnimatorBase.h',
955 'scroll/ScrollAnimatorCompositorCoordinator.cpp', 1033 'scroll/ScrollAnimatorCompositorCoordinator.cpp',
956 'scroll/ScrollAnimatorCompositorCoordinator.h', 1034 'scroll/ScrollAnimatorCompositorCoordinator.h',
957 'scroll/ScrollAnimator.cpp', 1035 'scroll/ScrollAnimator.cpp',
958 'scroll/ScrollAnimator.h', 1036 'scroll/ScrollAnimator.h',
959 'scroll/ScrollTypes.h', 1037 'scroll/ScrollTypes.h',
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 'inspector_protocol/ParserTest.cpp', 1319 'inspector_protocol/ParserTest.cpp',
1242 'mac/VersionUtilMacTest.mm', 1320 'mac/VersionUtilMacTest.mm',
1243 'mojo/KURLSecurityOriginTest.cpp', 1321 'mojo/KURLSecurityOriginTest.cpp',
1244 'network/EncodedFormDataTest.cpp', 1322 'network/EncodedFormDataTest.cpp',
1245 'network/HTTPParsersTest.cpp', 1323 'network/HTTPParsersTest.cpp',
1246 'network/LinkHeaderTest.cpp', 1324 'network/LinkHeaderTest.cpp',
1247 'network/NetworkUtilsTest.cpp', 1325 'network/NetworkUtilsTest.cpp',
1248 'network/ResourceRequestTest.cpp', 1326 'network/ResourceRequestTest.cpp',
1249 'network/ResourceResponseTest.cpp', 1327 'network/ResourceResponseTest.cpp',
1250 'scheduler/CancellableTaskFactoryTest.cpp', 1328 'scheduler/CancellableTaskFactoryTest.cpp',
1329 'scheduler/base/long_task_tracker_unittest.cc',
1330 'scheduler/base/task_queue_manager_delegate_for_test.cc',
1331 'scheduler/base/task_queue_manager_unittest.cc',
1332 'scheduler/base/task_queue_selector_unittest.cc',
1333 'scheduler/base/test_count_uses_time_source.cc',
1334 'scheduler/base/test_time_source.cc',
1335 'scheduler/base/time_domain_unittest.cc',
1336 'scheduler/base/work_queue_sets_unittest.cc',
1337 'scheduler/base/queueing_time_estimator_unittest.cc',
1338 'scheduler/child/idle_helper_unittest.cc',
1339 'scheduler/child/scheduler_helper_unittest.cc',
1340 'scheduler/child/scheduler_tqm_delegate_for_test.cc',
1341 'scheduler/child/scheduler_tqm_delegate_impl_unittest.cc',
1342 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc',
1343 'scheduler/child/worker_scheduler_impl_unittest.cc',
1344 'scheduler/renderer/auto_advancing_virtual_time_domain_unittest.cc',
1345 'scheduler/renderer/deadline_task_runner_unittest.cc',
1346 'scheduler/renderer/idle_time_estimator_unittest.cc',
1347 'scheduler/renderer/renderer_scheduler_impl_unittest.cc',
1348 'scheduler/renderer/task_cost_estimator_unittest.cc',
1349 'scheduler/renderer/throttling_helper_unittest.cc',
1350 'scheduler/renderer/user_model_unittest.cc',
1351 'scheduler/renderer/webthread_impl_for_renderer_scheduler_unittest.cc',
1352 'scheduler/renderer/web_view_scheduler_impl_unittest.cc',
1251 'scroll/ScrollableAreaTest.cpp', 1353 'scroll/ScrollableAreaTest.cpp',
1252 'testing/ArenaTestHelpers.h', 1354 'testing/ArenaTestHelpers.h',
1253 'testing/TreeTestHelpers.cpp', 1355 'testing/TreeTestHelpers.cpp',
1254 'testing/TreeTestHelpers.h', 1356 'testing/TreeTestHelpers.h',
1255 'text/BidiResolverTest.cpp', 1357 'text/BidiResolverTest.cpp',
1256 'text/CharacterTest.cpp', 1358 'text/CharacterTest.cpp',
1257 'text/DateTimeFormatTest.cpp', 1359 'text/DateTimeFormatTest.cpp',
1258 'text/HyphenationTest.cpp', 1360 'text/HyphenationTest.cpp',
1259 'text/SegmentedStringTest.cpp', 1361 'text/SegmentedStringTest.cpp',
1260 'text/TextBreakIteratorTest.cpp', 1362 'text/TextBreakIteratorTest.cpp',
(...skipping 21 matching lines...) Expand all
1282 'graphics/DeferredImageDecoderTest.cpp', 1384 'graphics/DeferredImageDecoderTest.cpp',
1283 'graphics/GraphicsLayerTest.cpp', 1385 'graphics/GraphicsLayerTest.cpp',
1284 'graphics/ImageDecodingStoreTest.cpp', 1386 'graphics/ImageDecodingStoreTest.cpp',
1285 'graphics/ImageFrameGeneratorTest.cpp', 1387 'graphics/ImageFrameGeneratorTest.cpp',
1286 'graphics/ImageLayerChromiumTest.cpp', 1388 'graphics/ImageLayerChromiumTest.cpp',
1287 'graphics/test/FakeGLES2Interface.h', 1389 'graphics/test/FakeGLES2Interface.h',
1288 'graphics/test/FakeWebGraphicsContext3DProvider.h', 1390 'graphics/test/FakeWebGraphicsContext3DProvider.h',
1289 'graphics/test/MockImageDecoder.h', 1391 'graphics/test/MockImageDecoder.h',
1290 ], 1392 ],
1291 'platform_test_support_files': [ 1393 'platform_test_support_files': [
1394 'scheduler/test/fake_renderer_scheduler.cc',
1395 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc',
1396 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h',
1397 'scheduler/test/renderer_scheduler_test_support.cc',
1292 'scroll/ScrollbarTestSuite.h', 1398 'scroll/ScrollbarTestSuite.h',
1293 'testing/CompositorTest.cpp', 1399 'testing/CompositorTest.cpp',
1294 'testing/CompositorTest.h', 1400 'testing/CompositorTest.h',
1295 'testing/FakeDisplayItemClient.h', 1401 'testing/FakeDisplayItemClient.h',
1296 'testing/FakeGraphicsLayer.h', 1402 'testing/FakeGraphicsLayer.h',
1297 'testing/FakeGraphicsLayerClient.h', 1403 'testing/FakeGraphicsLayerClient.h',
1298 'testing/FontTestHelpers.cpp', 1404 'testing/FontTestHelpers.cpp',
1299 'testing/FontTestHelpers.h', 1405 'testing/FontTestHelpers.h',
1300 'testing/GeometryPrinters.cpp', 1406 'testing/GeometryPrinters.cpp',
1301 'testing/GeometryPrinters.h', 1407 'testing/GeometryPrinters.h',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1356 ['use_default_render_theme==1', 1462 ['use_default_render_theme==1',
1357 { 1463 {
1358 'platform_test_files': [ 1464 'platform_test_files': [
1359 'scroll/ScrollbarThemeAuraTest.cpp', 1465 'scroll/ScrollbarThemeAuraTest.cpp',
1360 ], 1466 ],
1361 } 1467 }
1362 ], 1468 ],
1363 ], 1469 ],
1364 }, 1470 },
1365 } 1471 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698