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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2514733002: Scheduler: Deprecate CancellableTaskFactory in favor of WebTaskRunner::postCancellableTask (3) (Closed)
Patch Set: Created 4 years 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 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 "peerconnection/RTCAnswerOptionsPlatform.h", 1128 "peerconnection/RTCAnswerOptionsPlatform.h",
1129 "peerconnection/RTCOfferOptionsPlatform.h", 1129 "peerconnection/RTCOfferOptionsPlatform.h",
1130 "peerconnection/RTCSessionDescriptionRequest.h", 1130 "peerconnection/RTCSessionDescriptionRequest.h",
1131 "peerconnection/RTCStatsRequest.h", 1131 "peerconnection/RTCStatsRequest.h",
1132 "peerconnection/RTCStatsResponseBase.h", 1132 "peerconnection/RTCStatsResponseBase.h",
1133 "peerconnection/RTCVoidRequest.h", 1133 "peerconnection/RTCVoidRequest.h",
1134 "plugins/PluginData.cpp", 1134 "plugins/PluginData.cpp",
1135 "plugins/PluginData.h", 1135 "plugins/PluginData.h",
1136 "plugins/PluginListBuilder.cpp", 1136 "plugins/PluginListBuilder.cpp",
1137 "plugins/PluginListBuilder.h", 1137 "plugins/PluginListBuilder.h",
1138 "scheduler/CancellableTaskFactory.cpp",
1139 "scheduler/CancellableTaskFactory.h",
1140 "scheduler/base/cancelable_closure_holder.cc", 1138 "scheduler/base/cancelable_closure_holder.cc",
1141 "scheduler/base/cancelable_closure_holder.h", 1139 "scheduler/base/cancelable_closure_holder.h",
1142 "scheduler/base/enqueue_order.cc", 1140 "scheduler/base/enqueue_order.cc",
1143 "scheduler/base/enqueue_order.h", 1141 "scheduler/base/enqueue_order.h",
1144 "scheduler/base/intrusive_heap.h", 1142 "scheduler/base/intrusive_heap.h",
1145 "scheduler/base/lazy_now.cc", 1143 "scheduler/base/lazy_now.cc",
1146 "scheduler/base/lazy_now.h", 1144 "scheduler/base/lazy_now.h",
1147 "scheduler/base/pollable_thread_safe_flag.cc", 1145 "scheduler/base/pollable_thread_safe_flag.cc",
1148 "scheduler/base/pollable_thread_safe_flag.h", 1146 "scheduler/base/pollable_thread_safe_flag.h",
1149 "scheduler/base/queueing_time_estimator.cc", 1147 "scheduler/base/queueing_time_estimator.cc",
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 "mojo/CommonCustomTypesStructTraitsTest.cpp", 1713 "mojo/CommonCustomTypesStructTraitsTest.cpp",
1716 "mojo/GeometryStructTraitsTest.cpp", 1714 "mojo/GeometryStructTraitsTest.cpp",
1717 "mojo/KURLSecurityOriginTest.cpp", 1715 "mojo/KURLSecurityOriginTest.cpp",
1718 "network/EncodedFormDataTest.cpp", 1716 "network/EncodedFormDataTest.cpp",
1719 "network/HTTPParsersTest.cpp", 1717 "network/HTTPParsersTest.cpp",
1720 "network/LinkHeaderTest.cpp", 1718 "network/LinkHeaderTest.cpp",
1721 "network/NetworkUtilsTest.cpp", 1719 "network/NetworkUtilsTest.cpp",
1722 "network/ResourceRequestTest.cpp", 1720 "network/ResourceRequestTest.cpp",
1723 "network/ResourceResponseTest.cpp", 1721 "network/ResourceResponseTest.cpp",
1724 "network/mime/MIMETypeRegistryTest.cpp", 1722 "network/mime/MIMETypeRegistryTest.cpp",
1725 "scheduler/CancellableTaskFactoryTest.cpp",
1726 "scheduler/base/intrusive_heap_unittest.cc", 1723 "scheduler/base/intrusive_heap_unittest.cc",
1727 "scheduler/base/queueing_time_estimator_unittest.cc", 1724 "scheduler/base/queueing_time_estimator_unittest.cc",
1728 "scheduler/base/task_queue_manager_unittest.cc", 1725 "scheduler/base/task_queue_manager_unittest.cc",
1729 "scheduler/base/task_queue_selector_unittest.cc", 1726 "scheduler/base/task_queue_selector_unittest.cc",
1730 "scheduler/base/test_count_uses_time_source.cc", 1727 "scheduler/base/test_count_uses_time_source.cc",
1731 "scheduler/base/thread_load_tracker_unittest.cc", 1728 "scheduler/base/thread_load_tracker_unittest.cc",
1732 "scheduler/base/time_domain_unittest.cc", 1729 "scheduler/base/time_domain_unittest.cc",
1733 "scheduler/base/work_queue_sets_unittest.cc", 1730 "scheduler/base/work_queue_sets_unittest.cc",
1734 "scheduler/base/work_queue_unittest.cc", 1731 "scheduler/base/work_queue_unittest.cc",
1735 "scheduler/child/idle_helper_unittest.cc", 1732 "scheduler/child/idle_helper_unittest.cc",
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
2026 "//third_party/WebKit/Source:inside_blink", 2023 "//third_party/WebKit/Source:inside_blink",
2027 ] 2024 ]
2028 2025
2029 deps = [ 2026 deps = [
2030 ":test_support", 2027 ":test_support",
2031 "//cc/surfaces:surface_id", 2028 "//cc/surfaces:surface_id",
2032 "//testing/gmock", 2029 "//testing/gmock",
2033 "//testing/gtest", 2030 "//testing/gtest",
2034 ] 2031 ]
2035 } 2032 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698