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

Side by Side Diff: base/BUILD.gn

Issue 1806473002: TaskScheduler [9] Delayed Task Manager (Closed) Base URL: https://luckyluke-private.googlesource.com/src@s_5_worker_thread
Patch Set: CR danakj #29 Created 4 years, 8 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 #"sys_info_openbsd.cc", # Unused in Chromium build. 754 #"sys_info_openbsd.cc", # Unused in Chromium build.
755 "sys_info_posix.cc", 755 "sys_info_posix.cc",
756 "sys_info_win.cc", 756 "sys_info_win.cc",
757 "system_monitor/system_monitor.cc", 757 "system_monitor/system_monitor.cc",
758 "system_monitor/system_monitor.h", 758 "system_monitor/system_monitor.h",
759 "task/cancelable_task_tracker.cc", 759 "task/cancelable_task_tracker.cc",
760 "task/cancelable_task_tracker.h", 760 "task/cancelable_task_tracker.h",
761 "task_runner.cc", 761 "task_runner.cc",
762 "task_runner.h", 762 "task_runner.h",
763 "task_runner_util.h", 763 "task_runner_util.h",
764 "task_scheduler/delayed_task_manager.cc",
765 "task_scheduler/delayed_task_manager.h",
764 "task_scheduler/priority_queue.cc", 766 "task_scheduler/priority_queue.cc",
765 "task_scheduler/priority_queue.h", 767 "task_scheduler/priority_queue.h",
766 "task_scheduler/scheduler_lock.h", 768 "task_scheduler/scheduler_lock.h",
767 "task_scheduler/scheduler_lock_impl.cc", 769 "task_scheduler/scheduler_lock_impl.cc",
768 "task_scheduler/scheduler_lock_impl.h", 770 "task_scheduler/scheduler_lock_impl.h",
769 "task_scheduler/scheduler_task_executor.h", 771 "task_scheduler/scheduler_task_executor.h",
770 "task_scheduler/scheduler_thread_pool.cc", 772 "task_scheduler/scheduler_thread_pool.cc",
771 "task_scheduler/scheduler_thread_pool.h", 773 "task_scheduler/scheduler_thread_pool.h",
772 "task_scheduler/scheduler_worker_thread.cc", 774 "task_scheduler/scheduler_worker_thread.cc",
773 "task_scheduler/scheduler_worker_thread.h", 775 "task_scheduler/scheduler_worker_thread.h",
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1836 "sync_socket_unittest.cc", 1838 "sync_socket_unittest.cc",
1837 "synchronization/cancellation_flag_unittest.cc", 1839 "synchronization/cancellation_flag_unittest.cc",
1838 "synchronization/condition_variable_unittest.cc", 1840 "synchronization/condition_variable_unittest.cc",
1839 "synchronization/lock_unittest.cc", 1841 "synchronization/lock_unittest.cc",
1840 "synchronization/waitable_event_unittest.cc", 1842 "synchronization/waitable_event_unittest.cc",
1841 "synchronization/waitable_event_watcher_unittest.cc", 1843 "synchronization/waitable_event_watcher_unittest.cc",
1842 "sys_info_unittest.cc", 1844 "sys_info_unittest.cc",
1843 "system_monitor/system_monitor_unittest.cc", 1845 "system_monitor/system_monitor_unittest.cc",
1844 "task/cancelable_task_tracker_unittest.cc", 1846 "task/cancelable_task_tracker_unittest.cc",
1845 "task_runner_util_unittest.cc", 1847 "task_runner_util_unittest.cc",
1848 "task_scheduler/delayed_task_manager_unittest.cc",
1846 "task_scheduler/priority_queue_unittest.cc", 1849 "task_scheduler/priority_queue_unittest.cc",
1847 "task_scheduler/scheduler_lock_unittest.cc", 1850 "task_scheduler/scheduler_lock_unittest.cc",
1848 "task_scheduler/scheduler_thread_pool_unittest.cc", 1851 "task_scheduler/scheduler_thread_pool_unittest.cc",
1849 "task_scheduler/scheduler_worker_thread_unittest.cc", 1852 "task_scheduler/scheduler_worker_thread_unittest.cc",
1850 "task_scheduler/sequence_sort_key_unittest.cc", 1853 "task_scheduler/sequence_sort_key_unittest.cc",
1851 "task_scheduler/sequence_unittest.cc", 1854 "task_scheduler/sequence_unittest.cc",
1852 "task_scheduler/task_tracker_unittest.cc", 1855 "task_scheduler/task_tracker_unittest.cc",
1853 "task_scheduler/test_utils.h", 1856 "task_scheduler/test_utils.h",
1854 "task_scheduler/utils_unittest.cc", 1857 "task_scheduler/utils_unittest.cc",
1855 "template_util_unittest.cc", 1858 "template_util_unittest.cc",
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
2350 2353
2351 # GYP: //base.gyp:base_java_unittest_support 2354 # GYP: //base.gyp:base_java_unittest_support
2352 android_library("base_java_unittest_support") { 2355 android_library("base_java_unittest_support") {
2353 deps = [ 2356 deps = [
2354 ":base_java", 2357 ":base_java",
2355 ] 2358 ]
2356 java_files = 2359 java_files =
2357 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2360 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2358 } 2361 }
2359 } 2362 }
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