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

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: Another GYP fix Created 4 years, 5 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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 'peerconnection/RTCSessionDescriptionRequest.h', 936 'peerconnection/RTCSessionDescriptionRequest.h',
937 'peerconnection/RTCStatsRequest.h', 937 'peerconnection/RTCStatsRequest.h',
938 'peerconnection/RTCStatsResponseBase.h', 938 'peerconnection/RTCStatsResponseBase.h',
939 'peerconnection/RTCVoidRequest.h', 939 'peerconnection/RTCVoidRequest.h',
940 'plugins/PluginData.cpp', 940 'plugins/PluginData.cpp',
941 'plugins/PluginData.h', 941 'plugins/PluginData.h',
942 'plugins/PluginListBuilder.cpp', 942 'plugins/PluginListBuilder.cpp',
943 'plugins/PluginListBuilder.h', 943 'plugins/PluginListBuilder.h',
944 'scheduler/CancellableTaskFactory.cpp', 944 'scheduler/CancellableTaskFactory.cpp',
945 'scheduler/CancellableTaskFactory.h', 945 'scheduler/CancellableTaskFactory.h',
946 'scheduler/base/cancelable_closure_holder.cc',
947 'scheduler/base/cancelable_closure_holder.h',
948 'scheduler/base/enqueue_order.cc',
949 'scheduler/base/enqueue_order.h',
950 'scheduler/base/lazy_now.cc',
951 'scheduler/base/lazy_now.h',
952 'scheduler/base/pollable_thread_safe_flag.cc',
953 'scheduler/base/pollable_thread_safe_flag.h',
954 'scheduler/base/queueing_time_estimator.cc',
955 'scheduler/base/queueing_time_estimator.h',
956 'scheduler/base/real_time_domain.cc',
957 'scheduler/base/real_time_domain.h',
958 'scheduler/base/task_queue_impl.cc',
959 'scheduler/base/task_queue_impl.h',
960 'scheduler/base/task_queue_manager.cc',
961 'scheduler/base/task_queue_manager.h',
962 'scheduler/base/task_queue_manager_delegate.h',
963 'scheduler/base/task_queue_selector.cc',
964 'scheduler/base/task_queue_selector.h',
965 'scheduler/base/task_time_tracker.h',
966 'scheduler/base/time_domain.cc',
967 'scheduler/base/time_domain.h',
968 'scheduler/base/virtual_time_domain.cc',
969 'scheduler/base/virtual_time_domain.h',
970 'scheduler/base/work_queue.cc',
971 'scheduler/base/work_queue.h',
972 'scheduler/base/work_queue_sets.cc',
973 'scheduler/base/work_queue_sets.h',
974 'scheduler/CancellableTaskFactory.h',
975 'scheduler/child/compositor_worker_scheduler.cc',
976 'scheduler/child/idle_helper.cc',
977 'scheduler/child/idle_helper.h',
978 'scheduler/child/scheduler_helper.cc',
979 'scheduler/child/scheduler_helper.h',
980 'scheduler/child/scheduler_tqm_delegate.h',
981 'scheduler/child/scheduler_tqm_delegate_impl.cc',
982 'scheduler/child/scheduler_tqm_delegate_impl.h',
983 'scheduler/child/single_thread_idle_task_runner.cc',
984 'scheduler/child/web_scheduler_impl.cc',
985 'scheduler/child/web_scheduler_impl.h',
986 'scheduler/child/web_task_runner_impl.cc',
987 'scheduler/child/web_task_runner_impl.h',
988 'scheduler/child/webthread_base.cc',
989 'scheduler/child/webthread_impl_for_worker_scheduler.cc',
990 'scheduler/child/worker_scheduler.cc',
991 'scheduler/child/worker_scheduler.h',
992 'scheduler/child/worker_scheduler_impl.cc',
993 'scheduler/child/worker_scheduler_impl.h',
994 'scheduler/renderer/auto_advancing_virtual_time_domain.cc',
995 'scheduler/renderer/auto_advancing_virtual_time_domain.h',
996 'scheduler/renderer/deadline_task_runner.cc',
997 'scheduler/renderer/deadline_task_runner.h',
998 'scheduler/renderer/idle_time_estimator.cc',
999 'scheduler/renderer/idle_time_estimator.h',
1000 'scheduler/renderer/renderer_scheduler.cc',
1001 'scheduler/renderer/renderer_scheduler_impl.cc',
1002 'scheduler/renderer/renderer_scheduler_impl.h',
1003 'scheduler/renderer/renderer_web_scheduler_impl.cc',
1004 'scheduler/renderer/renderer_web_scheduler_impl.h',
1005 'scheduler/renderer/render_widget_scheduling_state.cc',
1006 'scheduler/renderer/render_widget_signals.cc',
1007 'scheduler/renderer/render_widget_signals.h',
1008 'scheduler/renderer/task_cost_estimator.cc',
1009 'scheduler/renderer/task_cost_estimator.h',
1010 'scheduler/renderer/throttled_time_domain.cc',
1011 'scheduler/renderer/throttled_time_domain.h',
1012 'scheduler/renderer/throttling_helper.cc',
1013 'scheduler/renderer/throttling_helper.h',
1014 'scheduler/renderer/user_model.cc',
1015 'scheduler/renderer/user_model.h',
1016 'scheduler/renderer/web_frame_scheduler_impl.cc',
1017 'scheduler/renderer/web_frame_scheduler_impl.h',
1018 'scheduler/renderer/webthread_impl_for_renderer_scheduler.cc',
1019 'scheduler/renderer/webthread_impl_for_renderer_scheduler.h',
1020 'scheduler/renderer/web_view_scheduler_impl.cc',
1021 'scheduler/renderer/web_view_scheduler_impl.h',
1022 'scheduler/utility/webthread_impl_for_utility_thread.cc',
946 'scroll/MainThreadScrollingReason.h', 1023 'scroll/MainThreadScrollingReason.h',
947 'scroll/ProgrammaticScrollAnimator.cpp', 1024 'scroll/ProgrammaticScrollAnimator.cpp',
948 'scroll/ProgrammaticScrollAnimator.h', 1025 'scroll/ProgrammaticScrollAnimator.h',
949 'scroll/ScrollAnimatorBase.cpp', 1026 'scroll/ScrollAnimatorBase.cpp',
950 'scroll/ScrollAnimatorBase.h', 1027 'scroll/ScrollAnimatorBase.h',
951 'scroll/ScrollAnimatorCompositorCoordinator.cpp', 1028 'scroll/ScrollAnimatorCompositorCoordinator.cpp',
952 'scroll/ScrollAnimatorCompositorCoordinator.h', 1029 'scroll/ScrollAnimatorCompositorCoordinator.h',
953 'scroll/ScrollAnimator.cpp', 1030 'scroll/ScrollAnimator.cpp',
954 'scroll/ScrollAnimator.h', 1031 'scroll/ScrollAnimator.h',
955 'scroll/ScrollTypes.h', 1032 'scroll/ScrollTypes.h',
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 'image-decoders/ico/ICOImageDecoderTest.cpp', 1311 'image-decoders/ico/ICOImageDecoderTest.cpp',
1235 'inspector_protocol/ParserTest.cpp', 1312 'inspector_protocol/ParserTest.cpp',
1236 'mac/VersionUtilMacTest.mm', 1313 'mac/VersionUtilMacTest.mm',
1237 'mojo/KURLSecurityOriginTest.cpp', 1314 'mojo/KURLSecurityOriginTest.cpp',
1238 'network/EncodedFormDataTest.cpp', 1315 'network/EncodedFormDataTest.cpp',
1239 'network/HTTPParsersTest.cpp', 1316 'network/HTTPParsersTest.cpp',
1240 'network/LinkHeaderTest.cpp', 1317 'network/LinkHeaderTest.cpp',
1241 'network/NetworkUtilsTest.cpp', 1318 'network/NetworkUtilsTest.cpp',
1242 'network/ResourceRequestTest.cpp', 1319 'network/ResourceRequestTest.cpp',
1243 'scheduler/CancellableTaskFactoryTest.cpp', 1320 'scheduler/CancellableTaskFactoryTest.cpp',
1321 'scheduler/base/task_queue_manager_delegate_for_test.cc',
1322 'scheduler/base/task_queue_manager_unittest.cc',
1323 'scheduler/base/task_queue_selector_unittest.cc',
1324 'scheduler/base/test_count_uses_time_source.cc',
1325 'scheduler/base/test_time_source.cc',
1326 'scheduler/base/time_domain_unittest.cc',
1327 'scheduler/base/work_queue_sets_unittest.cc',
1328 'scheduler/base/queueing_time_estimator_unittest.cc',
1329 'scheduler/child/idle_helper_unittest.cc',
1330 'scheduler/child/scheduler_helper_unittest.cc',
1331 'scheduler/child/scheduler_tqm_delegate_for_test.cc',
1332 'scheduler/child/scheduler_tqm_delegate_impl_unittest.cc',
1333 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc',
1334 'scheduler/child/worker_scheduler_impl_unittest.cc',
1335 'scheduler/renderer/auto_advancing_virtual_time_domain_unittest.cc',
1336 'scheduler/renderer/deadline_task_runner_unittest.cc',
1337 'scheduler/renderer/idle_time_estimator_unittest.cc',
1338 'scheduler/renderer/renderer_scheduler_impl_unittest.cc',
1339 'scheduler/renderer/task_cost_estimator_unittest.cc',
1340 'scheduler/renderer/throttling_helper_unittest.cc',
1341 'scheduler/renderer/user_model_unittest.cc',
1342 'scheduler/renderer/webthread_impl_for_renderer_scheduler_unittest.cc',
1343 'scheduler/renderer/web_view_scheduler_impl_unittest.cc',
1244 'scroll/ScrollableAreaTest.cpp', 1344 'scroll/ScrollableAreaTest.cpp',
1245 'testing/ArenaTestHelpers.h', 1345 'testing/ArenaTestHelpers.h',
1246 'testing/TreeTestHelpers.cpp', 1346 'testing/TreeTestHelpers.cpp',
1247 'testing/TreeTestHelpers.h', 1347 'testing/TreeTestHelpers.h',
1248 'text/BidiResolverTest.cpp', 1348 'text/BidiResolverTest.cpp',
1249 'text/CharacterTest.cpp', 1349 'text/CharacterTest.cpp',
1250 'text/DateTimeFormatTest.cpp', 1350 'text/DateTimeFormatTest.cpp',
1251 'text/LocaleToScriptMappingTest.cpp', 1351 'text/LocaleToScriptMappingTest.cpp',
1252 'text/HyphenationTest.cpp', 1352 'text/HyphenationTest.cpp',
1253 'text/SegmentedStringTest.cpp', 1353 'text/SegmentedStringTest.cpp',
(...skipping 22 matching lines...) Expand all
1276 'graphics/DeferredImageDecoderTest.cpp', 1376 'graphics/DeferredImageDecoderTest.cpp',
1277 'graphics/GraphicsLayerTest.cpp', 1377 'graphics/GraphicsLayerTest.cpp',
1278 'graphics/ImageDecodingStoreTest.cpp', 1378 'graphics/ImageDecodingStoreTest.cpp',
1279 'graphics/ImageFrameGeneratorTest.cpp', 1379 'graphics/ImageFrameGeneratorTest.cpp',
1280 'graphics/ImageLayerChromiumTest.cpp', 1380 'graphics/ImageLayerChromiumTest.cpp',
1281 'graphics/test/FakeGLES2Interface.h', 1381 'graphics/test/FakeGLES2Interface.h',
1282 'graphics/test/FakeWebGraphicsContext3DProvider.h', 1382 'graphics/test/FakeWebGraphicsContext3DProvider.h',
1283 'graphics/test/MockImageDecoder.h', 1383 'graphics/test/MockImageDecoder.h',
1284 ], 1384 ],
1285 'platform_test_support_files': [ 1385 'platform_test_support_files': [
1386 'scheduler/test/fake_renderer_scheduler.cc',
1387 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.cc',
1388 'scheduler/test/lazy_scheduler_message_loop_delegate_for_tests.h',
1389 'scheduler/test/renderer_scheduler_test_support.cc',
1286 'scroll/ScrollbarTestSuite.h', 1390 'scroll/ScrollbarTestSuite.h',
1287 'testing/CompositorTest.cpp', 1391 'testing/CompositorTest.cpp',
1288 'testing/CompositorTest.h', 1392 'testing/CompositorTest.h',
1289 'testing/FakeDisplayItemClient.h', 1393 'testing/FakeDisplayItemClient.h',
1290 'testing/FakeGraphicsLayer.h', 1394 'testing/FakeGraphicsLayer.h',
1291 'testing/FakeGraphicsLayerClient.h', 1395 'testing/FakeGraphicsLayerClient.h',
1292 'testing/FontTestHelpers.cpp', 1396 'testing/FontTestHelpers.cpp',
1293 'testing/FontTestHelpers.h', 1397 'testing/FontTestHelpers.h',
1294 'testing/GeometryPrinters.cpp', 1398 'testing/GeometryPrinters.cpp',
1295 'testing/GeometryPrinters.h', 1399 'testing/GeometryPrinters.h',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1350 ['use_default_render_theme==1', 1454 ['use_default_render_theme==1',
1351 { 1455 {
1352 'platform_test_files': [ 1456 'platform_test_files': [
1353 'scroll/ScrollbarThemeAuraTest.cpp', 1457 'scroll/ScrollbarThemeAuraTest.cpp',
1354 ], 1458 ],
1355 } 1459 }
1356 ], 1460 ],
1357 ], 1461 ],
1358 }, 1462 },
1359 } 1463 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698