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

Side by Side Diff: base/BUILD.gn

Issue 2068853002: Rename SchedulerThreadPool* to SchedulerWorkerPool* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename1
Patch Set: CR Feedback fdoray@ Created 4 years, 6 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
« no previous file with comments | « no previous file | base/base.gyp » ('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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 "task_runner_util.h", 767 "task_runner_util.h",
768 "task_scheduler/delayed_task_manager.cc", 768 "task_scheduler/delayed_task_manager.cc",
769 "task_scheduler/delayed_task_manager.h", 769 "task_scheduler/delayed_task_manager.h",
770 "task_scheduler/priority_queue.cc", 770 "task_scheduler/priority_queue.cc",
771 "task_scheduler/priority_queue.h", 771 "task_scheduler/priority_queue.h",
772 "task_scheduler/scheduler_lock.h", 772 "task_scheduler/scheduler_lock.h",
773 "task_scheduler/scheduler_lock_impl.cc", 773 "task_scheduler/scheduler_lock_impl.cc",
774 "task_scheduler/scheduler_lock_impl.h", 774 "task_scheduler/scheduler_lock_impl.h",
775 "task_scheduler/scheduler_service_thread.cc", 775 "task_scheduler/scheduler_service_thread.cc",
776 "task_scheduler/scheduler_service_thread.h", 776 "task_scheduler/scheduler_service_thread.h",
777 "task_scheduler/scheduler_thread_pool.h", 777 "task_scheduler/scheduler_worker_pool.h",
778 "task_scheduler/scheduler_thread_pool_impl.cc", 778 "task_scheduler/scheduler_worker_pool_impl.cc",
779 "task_scheduler/scheduler_thread_pool_impl.h", 779 "task_scheduler/scheduler_worker_pool_impl.h",
780 "task_scheduler/scheduler_worker_thread.cc", 780 "task_scheduler/scheduler_worker_thread.cc",
781 "task_scheduler/scheduler_worker_thread.h", 781 "task_scheduler/scheduler_worker_thread.h",
782 "task_scheduler/scheduler_worker_thread_stack.cc", 782 "task_scheduler/scheduler_worker_thread_stack.cc",
783 "task_scheduler/scheduler_worker_thread_stack.h", 783 "task_scheduler/scheduler_worker_thread_stack.h",
784 "task_scheduler/sequence.cc", 784 "task_scheduler/sequence.cc",
785 "task_scheduler/sequence.h", 785 "task_scheduler/sequence.h",
786 "task_scheduler/sequence_sort_key.cc", 786 "task_scheduler/sequence_sort_key.cc",
787 "task_scheduler/sequence_sort_key.h", 787 "task_scheduler/sequence_sort_key.h",
788 "task_scheduler/task.cc", 788 "task_scheduler/task.cc",
789 "task_scheduler/task.h", 789 "task_scheduler/task.h",
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after
1887 "synchronization/waitable_event_unittest.cc", 1887 "synchronization/waitable_event_unittest.cc",
1888 "synchronization/waitable_event_watcher_unittest.cc", 1888 "synchronization/waitable_event_watcher_unittest.cc",
1889 "sys_info_unittest.cc", 1889 "sys_info_unittest.cc",
1890 "system_monitor/system_monitor_unittest.cc", 1890 "system_monitor/system_monitor_unittest.cc",
1891 "task/cancelable_task_tracker_unittest.cc", 1891 "task/cancelable_task_tracker_unittest.cc",
1892 "task_runner_util_unittest.cc", 1892 "task_runner_util_unittest.cc",
1893 "task_scheduler/delayed_task_manager_unittest.cc", 1893 "task_scheduler/delayed_task_manager_unittest.cc",
1894 "task_scheduler/priority_queue_unittest.cc", 1894 "task_scheduler/priority_queue_unittest.cc",
1895 "task_scheduler/scheduler_lock_unittest.cc", 1895 "task_scheduler/scheduler_lock_unittest.cc",
1896 "task_scheduler/scheduler_service_thread_unittest.cc", 1896 "task_scheduler/scheduler_service_thread_unittest.cc",
1897 "task_scheduler/scheduler_thread_pool_impl_unittest.cc", 1897 "task_scheduler/scheduler_worker_pool_impl_unittest.cc",
1898 "task_scheduler/scheduler_worker_thread_stack_unittest.cc", 1898 "task_scheduler/scheduler_worker_thread_stack_unittest.cc",
1899 "task_scheduler/scheduler_worker_thread_unittest.cc", 1899 "task_scheduler/scheduler_worker_thread_unittest.cc",
1900 "task_scheduler/sequence_sort_key_unittest.cc", 1900 "task_scheduler/sequence_sort_key_unittest.cc",
1901 "task_scheduler/sequence_unittest.cc", 1901 "task_scheduler/sequence_unittest.cc",
1902 "task_scheduler/task_scheduler_impl_unittest.cc", 1902 "task_scheduler/task_scheduler_impl_unittest.cc",
1903 "task_scheduler/task_tracker_unittest.cc", 1903 "task_scheduler/task_tracker_unittest.cc",
1904 "task_scheduler/test_task_factory.cc", 1904 "task_scheduler/test_task_factory.cc",
1905 "task_scheduler/test_task_factory.h", 1905 "task_scheduler/test_task_factory.h",
1906 "task_scheduler/test_utils.h", 1906 "task_scheduler/test_utils.h",
1907 "template_util_unittest.cc", 1907 "template_util_unittest.cc",
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
2416 2416
2417 # GYP: //base.gyp:base_java_unittest_support 2417 # GYP: //base.gyp:base_java_unittest_support
2418 android_library("base_java_unittest_support") { 2418 android_library("base_java_unittest_support") {
2419 deps = [ 2419 deps = [
2420 ":base_java", 2420 ":base_java",
2421 ] 2421 ]
2422 java_files = 2422 java_files =
2423 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2423 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2424 } 2424 }
2425 } 2425 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698