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

Side by Side Diff: base/BUILD.gn

Issue 2698843006: Introduce SchedulerSingleThreadTaskRunnerManager (Closed)
Patch Set: CR Feedback Created 3 years, 10 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 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 "task_scheduler/delayed_task_manager.h", 834 "task_scheduler/delayed_task_manager.h",
835 "task_scheduler/initialization_util.cc", 835 "task_scheduler/initialization_util.cc",
836 "task_scheduler/initialization_util.h", 836 "task_scheduler/initialization_util.h",
837 "task_scheduler/post_task.cc", 837 "task_scheduler/post_task.cc",
838 "task_scheduler/post_task.h", 838 "task_scheduler/post_task.h",
839 "task_scheduler/priority_queue.cc", 839 "task_scheduler/priority_queue.cc",
840 "task_scheduler/priority_queue.h", 840 "task_scheduler/priority_queue.h",
841 "task_scheduler/scheduler_lock.h", 841 "task_scheduler/scheduler_lock.h",
842 "task_scheduler/scheduler_lock_impl.cc", 842 "task_scheduler/scheduler_lock_impl.cc",
843 "task_scheduler/scheduler_lock_impl.h", 843 "task_scheduler/scheduler_lock_impl.h",
844 "task_scheduler/scheduler_single_thread_task_runner_manager.cc",
845 "task_scheduler/scheduler_single_thread_task_runner_manager.h",
844 "task_scheduler/scheduler_worker.cc", 846 "task_scheduler/scheduler_worker.cc",
845 "task_scheduler/scheduler_worker.h", 847 "task_scheduler/scheduler_worker.h",
846 "task_scheduler/scheduler_worker_pool.h", 848 "task_scheduler/scheduler_worker_pool.h",
847 "task_scheduler/scheduler_worker_pool_impl.cc", 849 "task_scheduler/scheduler_worker_pool_impl.cc",
848 "task_scheduler/scheduler_worker_pool_impl.h", 850 "task_scheduler/scheduler_worker_pool_impl.h",
849 "task_scheduler/scheduler_worker_pool_params.cc", 851 "task_scheduler/scheduler_worker_pool_params.cc",
850 "task_scheduler/scheduler_worker_pool_params.h", 852 "task_scheduler/scheduler_worker_pool_params.h",
851 "task_scheduler/scheduler_worker_stack.cc", 853 "task_scheduler/scheduler_worker_stack.cc",
852 "task_scheduler/scheduler_worker_stack.h", 854 "task_scheduler/scheduler_worker_stack.h",
853 "task_scheduler/scoped_set_task_priority_for_current_thread.cc", 855 "task_scheduler/scoped_set_task_priority_for_current_thread.cc",
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after
2068 "synchronization/waitable_event_unittest.cc", 2070 "synchronization/waitable_event_unittest.cc",
2069 "synchronization/waitable_event_watcher_unittest.cc", 2071 "synchronization/waitable_event_watcher_unittest.cc",
2070 "sys_byteorder_unittest.cc", 2072 "sys_byteorder_unittest.cc",
2071 "sys_info_unittest.cc", 2073 "sys_info_unittest.cc",
2072 "system_monitor/system_monitor_unittest.cc", 2074 "system_monitor/system_monitor_unittest.cc",
2073 "task/cancelable_task_tracker_unittest.cc", 2075 "task/cancelable_task_tracker_unittest.cc",
2074 "task_runner_util_unittest.cc", 2076 "task_runner_util_unittest.cc",
2075 "task_scheduler/delayed_task_manager_unittest.cc", 2077 "task_scheduler/delayed_task_manager_unittest.cc",
2076 "task_scheduler/priority_queue_unittest.cc", 2078 "task_scheduler/priority_queue_unittest.cc",
2077 "task_scheduler/scheduler_lock_unittest.cc", 2079 "task_scheduler/scheduler_lock_unittest.cc",
2080 "task_scheduler/scheduler_single_thread_task_runner_manager_unittest.cc",
2078 "task_scheduler/scheduler_worker_pool_impl_unittest.cc", 2081 "task_scheduler/scheduler_worker_pool_impl_unittest.cc",
2079 "task_scheduler/scheduler_worker_stack_unittest.cc", 2082 "task_scheduler/scheduler_worker_stack_unittest.cc",
2080 "task_scheduler/scheduler_worker_unittest.cc", 2083 "task_scheduler/scheduler_worker_unittest.cc",
2081 "task_scheduler/scoped_set_task_priority_for_current_thread_unittest.cc", 2084 "task_scheduler/scoped_set_task_priority_for_current_thread_unittest.cc",
2082 "task_scheduler/sequence_sort_key_unittest.cc", 2085 "task_scheduler/sequence_sort_key_unittest.cc",
2083 "task_scheduler/sequence_unittest.cc", 2086 "task_scheduler/sequence_unittest.cc",
2084 "task_scheduler/task_scheduler_impl_unittest.cc", 2087 "task_scheduler/task_scheduler_impl_unittest.cc",
2085 "task_scheduler/task_tracker_posix_unittest.cc", 2088 "task_scheduler/task_tracker_posix_unittest.cc",
2086 "task_scheduler/task_tracker_unittest.cc", 2089 "task_scheduler/task_tracker_unittest.cc",
2087 "task_scheduler/task_traits_unittest.cc", 2090 "task_scheduler/task_traits_unittest.cc",
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
2640 } 2643 }
2641 2644
2642 fuzzer_test("base_json_correctness_fuzzer") { 2645 fuzzer_test("base_json_correctness_fuzzer") {
2643 sources = [ 2646 sources = [
2644 "json/correctness_fuzzer.cc", 2647 "json/correctness_fuzzer.cc",
2645 ] 2648 ]
2646 deps = [ 2649 deps = [
2647 ":base", 2650 ":base",
2648 ] 2651 ]
2649 } 2652 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698