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

Side by Side Diff: base/BUILD.gn

Issue 2546773002: TaskScheduler: Add internal::GetTaskPriorityForCurrentThread(). (Closed)
Patch Set: self-review 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 (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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 "task_scheduler/task_scheduler.cc", 831 "task_scheduler/task_scheduler.cc",
832 "task_scheduler/task_scheduler.h", 832 "task_scheduler/task_scheduler.h",
833 "task_scheduler/task_scheduler_impl.cc", 833 "task_scheduler/task_scheduler_impl.cc",
834 "task_scheduler/task_scheduler_impl.h", 834 "task_scheduler/task_scheduler_impl.h",
835 "task_scheduler/task_tracker.cc", 835 "task_scheduler/task_tracker.cc",
836 "task_scheduler/task_tracker.h", 836 "task_scheduler/task_tracker.h",
837 "task_scheduler/task_tracker_posix.cc", 837 "task_scheduler/task_tracker_posix.cc",
838 "task_scheduler/task_tracker_posix.h", 838 "task_scheduler/task_tracker_posix.h",
839 "task_scheduler/task_traits.cc", 839 "task_scheduler/task_traits.cc",
840 "task_scheduler/task_traits.h", 840 "task_scheduler/task_traits.h",
841 "task_scheduler/task_traits_for_current_thread.cc",
842 "task_scheduler/task_traits_for_current_thread.h",
841 "template_util.h", 843 "template_util.h",
842 "third_party/dmg_fp/dmg_fp.h", 844 "third_party/dmg_fp/dmg_fp.h",
843 "third_party/dmg_fp/dtoa_wrapper.cc", 845 "third_party/dmg_fp/dtoa_wrapper.cc",
844 "third_party/dmg_fp/g_fmt.cc", 846 "third_party/dmg_fp/g_fmt.cc",
845 "third_party/icu/icu_utf.cc", 847 "third_party/icu/icu_utf.cc",
846 "third_party/icu/icu_utf.h", 848 "third_party/icu/icu_utf.h",
847 "third_party/nspr/prtime.cc", 849 "third_party/nspr/prtime.cc",
848 "third_party/nspr/prtime.h", 850 "third_party/nspr/prtime.h",
849 "third_party/superfasthash/superfasthash.c", 851 "third_party/superfasthash/superfasthash.c",
850 "threading/non_thread_safe.h", 852 "threading/non_thread_safe.h",
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1981 "task_scheduler/priority_queue_unittest.cc", 1983 "task_scheduler/priority_queue_unittest.cc",
1982 "task_scheduler/scheduler_lock_unittest.cc", 1984 "task_scheduler/scheduler_lock_unittest.cc",
1983 "task_scheduler/scheduler_worker_pool_impl_unittest.cc", 1985 "task_scheduler/scheduler_worker_pool_impl_unittest.cc",
1984 "task_scheduler/scheduler_worker_stack_unittest.cc", 1986 "task_scheduler/scheduler_worker_stack_unittest.cc",
1985 "task_scheduler/scheduler_worker_unittest.cc", 1987 "task_scheduler/scheduler_worker_unittest.cc",
1986 "task_scheduler/sequence_sort_key_unittest.cc", 1988 "task_scheduler/sequence_sort_key_unittest.cc",
1987 "task_scheduler/sequence_unittest.cc", 1989 "task_scheduler/sequence_unittest.cc",
1988 "task_scheduler/task_scheduler_impl_unittest.cc", 1990 "task_scheduler/task_scheduler_impl_unittest.cc",
1989 "task_scheduler/task_tracker_posix_unittest.cc", 1991 "task_scheduler/task_tracker_posix_unittest.cc",
1990 "task_scheduler/task_tracker_unittest.cc", 1992 "task_scheduler/task_tracker_unittest.cc",
1993 "task_scheduler/task_traits_for_current_thread_unittest.cc",
1991 "task_scheduler/task_unittest.cc", 1994 "task_scheduler/task_unittest.cc",
1992 "task_scheduler/test_task_factory.cc", 1995 "task_scheduler/test_task_factory.cc",
1993 "task_scheduler/test_task_factory.h", 1996 "task_scheduler/test_task_factory.h",
1994 "task_scheduler/test_utils.h", 1997 "task_scheduler/test_utils.h",
1995 "template_util_unittest.cc", 1998 "template_util_unittest.cc",
1996 "test/histogram_tester_unittest.cc", 1999 "test/histogram_tester_unittest.cc",
1997 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", 2000 "test/scoped_mock_time_message_loop_task_runner_unittest.cc",
1998 "test/test_pending_task_unittest.cc", 2001 "test/test_pending_task_unittest.cc",
1999 "test/test_reg_util_win_unittest.cc", 2002 "test/test_reg_util_win_unittest.cc",
2000 "test/trace_event_analyzer_unittest.cc", 2003 "test/trace_event_analyzer_unittest.cc",
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
2525 } 2528 }
2526 2529
2527 fuzzer_test("base_json_correctness_fuzzer") { 2530 fuzzer_test("base_json_correctness_fuzzer") {
2528 sources = [ 2531 sources = [
2529 "json/correctness_fuzzer.cc", 2532 "json/correctness_fuzzer.cc",
2530 ] 2533 ]
2531 deps = [ 2534 deps = [
2532 ":base", 2535 ":base",
2533 ] 2536 ]
2534 } 2537 }
OLDNEW
« no previous file with comments | « no previous file | base/task_scheduler/task_tracker.cc » ('j') | base/task_scheduler/task_traits_for_current_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698