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

Side by Side Diff: base/BUILD.gn

Issue 2405243003: TaskScheduler: Replace the SchedulerServiceThread with a base::Thread. (Closed)
Patch Set: self-review Created 4 years, 2 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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 #"sys_info_openbsd.cc", # Unused in Chromium build. 776 #"sys_info_openbsd.cc", # Unused in Chromium build.
777 "sys_info_posix.cc", 777 "sys_info_posix.cc",
778 "sys_info_win.cc", 778 "sys_info_win.cc",
779 "system_monitor/system_monitor.cc", 779 "system_monitor/system_monitor.cc",
780 "system_monitor/system_monitor.h", 780 "system_monitor/system_monitor.h",
781 "task/cancelable_task_tracker.cc", 781 "task/cancelable_task_tracker.cc",
782 "task/cancelable_task_tracker.h", 782 "task/cancelable_task_tracker.h",
783 "task_runner.cc", 783 "task_runner.cc",
784 "task_runner.h", 784 "task_runner.h",
785 "task_runner_util.h", 785 "task_runner_util.h",
786 "task_scheduler/delayed_task_manager.cc",
787 "task_scheduler/delayed_task_manager.h",
788 "task_scheduler/post_task.cc", 786 "task_scheduler/post_task.cc",
789 "task_scheduler/post_task.h", 787 "task_scheduler/post_task.h",
790 "task_scheduler/priority_queue.cc", 788 "task_scheduler/priority_queue.cc",
791 "task_scheduler/priority_queue.h", 789 "task_scheduler/priority_queue.h",
792 "task_scheduler/scheduler_lock.h", 790 "task_scheduler/scheduler_lock.h",
793 "task_scheduler/scheduler_lock_impl.cc", 791 "task_scheduler/scheduler_lock_impl.cc",
794 "task_scheduler/scheduler_lock_impl.h", 792 "task_scheduler/scheduler_lock_impl.h",
795 "task_scheduler/scheduler_service_thread.cc",
796 "task_scheduler/scheduler_service_thread.h",
797 "task_scheduler/scheduler_worker.cc", 793 "task_scheduler/scheduler_worker.cc",
798 "task_scheduler/scheduler_worker.h", 794 "task_scheduler/scheduler_worker.h",
799 "task_scheduler/scheduler_worker_pool.h", 795 "task_scheduler/scheduler_worker_pool.h",
800 "task_scheduler/scheduler_worker_pool_impl.cc", 796 "task_scheduler/scheduler_worker_pool_impl.cc",
801 "task_scheduler/scheduler_worker_pool_impl.h", 797 "task_scheduler/scheduler_worker_pool_impl.h",
802 "task_scheduler/scheduler_worker_pool_params.cc", 798 "task_scheduler/scheduler_worker_pool_params.cc",
803 "task_scheduler/scheduler_worker_pool_params.h", 799 "task_scheduler/scheduler_worker_pool_params.h",
804 "task_scheduler/scheduler_worker_stack.cc", 800 "task_scheduler/scheduler_worker_stack.cc",
805 "task_scheduler/scheduler_worker_stack.h", 801 "task_scheduler/scheduler_worker_stack.h",
806 "task_scheduler/sequence.cc", 802 "task_scheduler/sequence.cc",
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1923 "synchronization/condition_variable_unittest.cc", 1919 "synchronization/condition_variable_unittest.cc",
1924 "synchronization/lock_unittest.cc", 1920 "synchronization/lock_unittest.cc",
1925 "synchronization/read_write_lock_unittest.cc", 1921 "synchronization/read_write_lock_unittest.cc",
1926 "synchronization/waitable_event_unittest.cc", 1922 "synchronization/waitable_event_unittest.cc",
1927 "synchronization/waitable_event_watcher_unittest.cc", 1923 "synchronization/waitable_event_watcher_unittest.cc",
1928 "sys_byteorder_unittest.cc", 1924 "sys_byteorder_unittest.cc",
1929 "sys_info_unittest.cc", 1925 "sys_info_unittest.cc",
1930 "system_monitor/system_monitor_unittest.cc", 1926 "system_monitor/system_monitor_unittest.cc",
1931 "task/cancelable_task_tracker_unittest.cc", 1927 "task/cancelable_task_tracker_unittest.cc",
1932 "task_runner_util_unittest.cc", 1928 "task_runner_util_unittest.cc",
1933 "task_scheduler/delayed_task_manager_unittest.cc",
1934 "task_scheduler/priority_queue_unittest.cc", 1929 "task_scheduler/priority_queue_unittest.cc",
1935 "task_scheduler/scheduler_lock_unittest.cc", 1930 "task_scheduler/scheduler_lock_unittest.cc",
1936 "task_scheduler/scheduler_service_thread_unittest.cc",
1937 "task_scheduler/scheduler_worker_pool_impl_unittest.cc", 1931 "task_scheduler/scheduler_worker_pool_impl_unittest.cc",
1938 "task_scheduler/scheduler_worker_stack_unittest.cc", 1932 "task_scheduler/scheduler_worker_stack_unittest.cc",
1939 "task_scheduler/scheduler_worker_unittest.cc", 1933 "task_scheduler/scheduler_worker_unittest.cc",
1940 "task_scheduler/sequence_sort_key_unittest.cc", 1934 "task_scheduler/sequence_sort_key_unittest.cc",
1941 "task_scheduler/sequence_unittest.cc", 1935 "task_scheduler/sequence_unittest.cc",
1942 "task_scheduler/task_scheduler_impl_unittest.cc", 1936 "task_scheduler/task_scheduler_impl_unittest.cc",
1943 "task_scheduler/task_tracker_unittest.cc", 1937 "task_scheduler/task_tracker_unittest.cc",
1944 "task_scheduler/task_unittest.cc", 1938 "task_scheduler/task_unittest.cc",
1945 "task_scheduler/test_task_factory.cc", 1939 "task_scheduler/test_task_factory.cc",
1946 "task_scheduler/test_task_factory.h", 1940 "task_scheduler/test_task_factory.h",
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2449 testonly = true 2443 testonly = true
2450 deps = [ 2444 deps = [
2451 ":base_java", 2445 ":base_java",
2452 ] 2446 ]
2453 java_files = [ 2447 java_files = [
2454 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2448 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2455 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2449 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2456 ] 2450 ]
2457 } 2451 }
2458 } 2452 }
OLDNEW
« no previous file with comments | « no previous file | base/task_scheduler/delayed_task_manager.h » ('j') | base/task_scheduler/delayed_task_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698