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

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

Issue 2419793002: [Reland] Optimize blink scheduler with an intrusive heap (Closed)
Patch Set: Fixed perf test and increaced test coverage Created 4 years, 1 month 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/scheduler/base/intrusive_heap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/Source/build/scripts/scripts.gni") 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
10 import("//third_party/WebKit/Source/config.gni") 10 import("//third_party/WebKit/Source/config.gni")
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 "plugins/PluginData.cpp", 1121 "plugins/PluginData.cpp",
1122 "plugins/PluginData.h", 1122 "plugins/PluginData.h",
1123 "plugins/PluginListBuilder.cpp", 1123 "plugins/PluginListBuilder.cpp",
1124 "plugins/PluginListBuilder.h", 1124 "plugins/PluginListBuilder.h",
1125 "scheduler/CancellableTaskFactory.cpp", 1125 "scheduler/CancellableTaskFactory.cpp",
1126 "scheduler/CancellableTaskFactory.h", 1126 "scheduler/CancellableTaskFactory.h",
1127 "scheduler/base/cancelable_closure_holder.cc", 1127 "scheduler/base/cancelable_closure_holder.cc",
1128 "scheduler/base/cancelable_closure_holder.h", 1128 "scheduler/base/cancelable_closure_holder.h",
1129 "scheduler/base/enqueue_order.cc", 1129 "scheduler/base/enqueue_order.cc",
1130 "scheduler/base/enqueue_order.h", 1130 "scheduler/base/enqueue_order.h",
1131 "scheduler/base/intrusive_heap.h",
1131 "scheduler/base/lazy_now.cc", 1132 "scheduler/base/lazy_now.cc",
1132 "scheduler/base/lazy_now.h", 1133 "scheduler/base/lazy_now.h",
1133 "scheduler/base/pollable_thread_safe_flag.cc", 1134 "scheduler/base/pollable_thread_safe_flag.cc",
1134 "scheduler/base/pollable_thread_safe_flag.h", 1135 "scheduler/base/pollable_thread_safe_flag.h",
1135 "scheduler/base/queueing_time_estimator.cc", 1136 "scheduler/base/queueing_time_estimator.cc",
1136 "scheduler/base/queueing_time_estimator.h", 1137 "scheduler/base/queueing_time_estimator.h",
1137 "scheduler/base/real_time_domain.cc", 1138 "scheduler/base/real_time_domain.cc",
1138 "scheduler/base/real_time_domain.h", 1139 "scheduler/base/real_time_domain.h",
1139 "scheduler/base/task_queue_impl.cc", 1140 "scheduler/base/task_queue_impl.cc",
1140 "scheduler/base/task_queue_impl.h", 1141 "scheduler/base/task_queue_impl.h",
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 "mojo/CommonCustomTypesStructTraitsTest.cpp", 1700 "mojo/CommonCustomTypesStructTraitsTest.cpp",
1700 "mojo/GeometryStructTraitsTest.cpp", 1701 "mojo/GeometryStructTraitsTest.cpp",
1701 "mojo/KURLSecurityOriginTest.cpp", 1702 "mojo/KURLSecurityOriginTest.cpp",
1702 "network/EncodedFormDataTest.cpp", 1703 "network/EncodedFormDataTest.cpp",
1703 "network/HTTPParsersTest.cpp", 1704 "network/HTTPParsersTest.cpp",
1704 "network/LinkHeaderTest.cpp", 1705 "network/LinkHeaderTest.cpp",
1705 "network/NetworkUtilsTest.cpp", 1706 "network/NetworkUtilsTest.cpp",
1706 "network/ResourceRequestTest.cpp", 1707 "network/ResourceRequestTest.cpp",
1707 "network/ResourceResponseTest.cpp", 1708 "network/ResourceResponseTest.cpp",
1708 "scheduler/CancellableTaskFactoryTest.cpp", 1709 "scheduler/CancellableTaskFactoryTest.cpp",
1710 "scheduler/base/intrusive_heap_unittest.cc",
1709 "scheduler/base/queueing_time_estimator_unittest.cc", 1711 "scheduler/base/queueing_time_estimator_unittest.cc",
1710 "scheduler/base/task_queue_manager_unittest.cc", 1712 "scheduler/base/task_queue_manager_unittest.cc",
1711 "scheduler/base/task_queue_selector_unittest.cc", 1713 "scheduler/base/task_queue_selector_unittest.cc",
1712 "scheduler/base/test_count_uses_time_source.cc", 1714 "scheduler/base/test_count_uses_time_source.cc",
1713 "scheduler/base/thread_load_tracker_unittest.cc", 1715 "scheduler/base/thread_load_tracker_unittest.cc",
1714 "scheduler/base/time_domain_unittest.cc", 1716 "scheduler/base/time_domain_unittest.cc",
1715 "scheduler/base/work_queue_sets_unittest.cc", 1717 "scheduler/base/work_queue_sets_unittest.cc",
1716 "scheduler/base/work_queue_unittest.cc", 1718 "scheduler/base/work_queue_unittest.cc",
1717 "scheduler/child/idle_helper_unittest.cc", 1719 "scheduler/child/idle_helper_unittest.cc",
1718 "scheduler/child/scheduler_helper_unittest.cc", 1720 "scheduler/child/scheduler_helper_unittest.cc",
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 "//third_party/WebKit/Source:inside_blink", 1976 "//third_party/WebKit/Source:inside_blink",
1975 ] 1977 ]
1976 1978
1977 deps = [ 1979 deps = [
1978 ":test_support", 1980 ":test_support",
1979 "//cc/surfaces:surface_id", 1981 "//cc/surfaces:surface_id",
1980 "//testing/gmock", 1982 "//testing/gmock",
1981 "//testing/gtest", 1983 "//testing/gtest",
1982 ] 1984 ]
1983 } 1985 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/scheduler/base/intrusive_heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698