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

Side by Side Diff: base/BUILD.gn

Issue 2546773002: TaskScheduler: Add internal::GetTaskPriorityForCurrentThread(). (Closed)
Patch Set: rename to scoped_set_task_priority_for_current_thread.h/cc 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
« no previous file with comments | « no previous file | base/task_scheduler/scoped_set_task_priority_for_current_thread.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 (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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 "task_scheduler/scheduler_lock_impl.h", 816 "task_scheduler/scheduler_lock_impl.h",
817 "task_scheduler/scheduler_worker.cc", 817 "task_scheduler/scheduler_worker.cc",
818 "task_scheduler/scheduler_worker.h", 818 "task_scheduler/scheduler_worker.h",
819 "task_scheduler/scheduler_worker_pool.h", 819 "task_scheduler/scheduler_worker_pool.h",
820 "task_scheduler/scheduler_worker_pool_impl.cc", 820 "task_scheduler/scheduler_worker_pool_impl.cc",
821 "task_scheduler/scheduler_worker_pool_impl.h", 821 "task_scheduler/scheduler_worker_pool_impl.h",
822 "task_scheduler/scheduler_worker_pool_params.cc", 822 "task_scheduler/scheduler_worker_pool_params.cc",
823 "task_scheduler/scheduler_worker_pool_params.h", 823 "task_scheduler/scheduler_worker_pool_params.h",
824 "task_scheduler/scheduler_worker_stack.cc", 824 "task_scheduler/scheduler_worker_stack.cc",
825 "task_scheduler/scheduler_worker_stack.h", 825 "task_scheduler/scheduler_worker_stack.h",
826 "task_scheduler/scoped_set_task_priority_for_current_thread.cc",
827 "task_scheduler/scoped_set_task_priority_for_current_thread.h",
826 "task_scheduler/sequence.cc", 828 "task_scheduler/sequence.cc",
827 "task_scheduler/sequence.h", 829 "task_scheduler/sequence.h",
828 "task_scheduler/sequence_sort_key.cc", 830 "task_scheduler/sequence_sort_key.cc",
829 "task_scheduler/sequence_sort_key.h", 831 "task_scheduler/sequence_sort_key.h",
830 "task_scheduler/task.cc", 832 "task_scheduler/task.cc",
831 "task_scheduler/task.h", 833 "task_scheduler/task.h",
832 "task_scheduler/task_scheduler.cc", 834 "task_scheduler/task_scheduler.cc",
833 "task_scheduler/task_scheduler.h", 835 "task_scheduler/task_scheduler.h",
834 "task_scheduler/task_scheduler_impl.cc", 836 "task_scheduler/task_scheduler_impl.cc",
835 "task_scheduler/task_scheduler_impl.h", 837 "task_scheduler/task_scheduler_impl.h",
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1977 "sys_info_unittest.cc", 1979 "sys_info_unittest.cc",
1978 "system_monitor/system_monitor_unittest.cc", 1980 "system_monitor/system_monitor_unittest.cc",
1979 "task/cancelable_task_tracker_unittest.cc", 1981 "task/cancelable_task_tracker_unittest.cc",
1980 "task_runner_util_unittest.cc", 1982 "task_runner_util_unittest.cc",
1981 "task_scheduler/delayed_task_manager_unittest.cc", 1983 "task_scheduler/delayed_task_manager_unittest.cc",
1982 "task_scheduler/priority_queue_unittest.cc", 1984 "task_scheduler/priority_queue_unittest.cc",
1983 "task_scheduler/scheduler_lock_unittest.cc", 1985 "task_scheduler/scheduler_lock_unittest.cc",
1984 "task_scheduler/scheduler_worker_pool_impl_unittest.cc", 1986 "task_scheduler/scheduler_worker_pool_impl_unittest.cc",
1985 "task_scheduler/scheduler_worker_stack_unittest.cc", 1987 "task_scheduler/scheduler_worker_stack_unittest.cc",
1986 "task_scheduler/scheduler_worker_unittest.cc", 1988 "task_scheduler/scheduler_worker_unittest.cc",
1989 "task_scheduler/scoped_set_task_priority_for_current_thread_unittest.cc",
1987 "task_scheduler/sequence_sort_key_unittest.cc", 1990 "task_scheduler/sequence_sort_key_unittest.cc",
1988 "task_scheduler/sequence_unittest.cc", 1991 "task_scheduler/sequence_unittest.cc",
1989 "task_scheduler/task_scheduler_impl_unittest.cc", 1992 "task_scheduler/task_scheduler_impl_unittest.cc",
1990 "task_scheduler/task_tracker_posix_unittest.cc", 1993 "task_scheduler/task_tracker_posix_unittest.cc",
1991 "task_scheduler/task_tracker_unittest.cc", 1994 "task_scheduler/task_tracker_unittest.cc",
1992 "task_scheduler/task_unittest.cc", 1995 "task_scheduler/task_unittest.cc",
1993 "task_scheduler/test_task_factory.cc", 1996 "task_scheduler/test_task_factory.cc",
1994 "task_scheduler/test_task_factory.h", 1997 "task_scheduler/test_task_factory.h",
1995 "task_scheduler/test_utils.h", 1998 "task_scheduler/test_utils.h",
1996 "template_util_unittest.cc", 1999 "template_util_unittest.cc",
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
2526 } 2529 }
2527 2530
2528 fuzzer_test("base_json_correctness_fuzzer") { 2531 fuzzer_test("base_json_correctness_fuzzer") {
2529 sources = [ 2532 sources = [
2530 "json/correctness_fuzzer.cc", 2533 "json/correctness_fuzzer.cc",
2531 ] 2534 ]
2532 deps = [ 2535 deps = [
2533 ":base", 2536 ":base",
2534 ] 2537 ]
2535 } 2538 }
OLDNEW
« no previous file with comments | « no previous file | base/task_scheduler/scoped_set_task_priority_for_current_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698