OLD | NEW |
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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 #"sys_info_openbsd.cc", # Unused in Chromium build. | 760 #"sys_info_openbsd.cc", # Unused in Chromium build. |
761 "sys_info_posix.cc", | 761 "sys_info_posix.cc", |
762 "sys_info_win.cc", | 762 "sys_info_win.cc", |
763 "system_monitor/system_monitor.cc", | 763 "system_monitor/system_monitor.cc", |
764 "system_monitor/system_monitor.h", | 764 "system_monitor/system_monitor.h", |
765 "task/cancelable_task_tracker.cc", | 765 "task/cancelable_task_tracker.cc", |
766 "task/cancelable_task_tracker.h", | 766 "task/cancelable_task_tracker.h", |
767 "task_runner.cc", | 767 "task_runner.cc", |
768 "task_runner.h", | 768 "task_runner.h", |
769 "task_runner_util.h", | 769 "task_runner_util.h", |
| 770 "task_scheduler/delayed_task_manager.cc", |
| 771 "task_scheduler/delayed_task_manager.h", |
770 "task_scheduler/priority_queue.cc", | 772 "task_scheduler/priority_queue.cc", |
771 "task_scheduler/priority_queue.h", | 773 "task_scheduler/priority_queue.h", |
772 "task_scheduler/scheduler_lock.h", | 774 "task_scheduler/scheduler_lock.h", |
773 "task_scheduler/scheduler_lock_impl.cc", | 775 "task_scheduler/scheduler_lock_impl.cc", |
774 "task_scheduler/scheduler_lock_impl.h", | 776 "task_scheduler/scheduler_lock_impl.h", |
775 "task_scheduler/scheduler_worker_thread.cc", | 777 "task_scheduler/scheduler_worker_thread.cc", |
776 "task_scheduler/scheduler_worker_thread.h", | 778 "task_scheduler/scheduler_worker_thread.h", |
777 "task_scheduler/sequence.cc", | 779 "task_scheduler/sequence.cc", |
778 "task_scheduler/sequence.h", | 780 "task_scheduler/sequence.h", |
779 "task_scheduler/sequence_sort_key.cc", | 781 "task_scheduler/sequence_sort_key.cc", |
(...skipping 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1822 "sync_socket_unittest.cc", | 1824 "sync_socket_unittest.cc", |
1823 "synchronization/cancellation_flag_unittest.cc", | 1825 "synchronization/cancellation_flag_unittest.cc", |
1824 "synchronization/condition_variable_unittest.cc", | 1826 "synchronization/condition_variable_unittest.cc", |
1825 "synchronization/lock_unittest.cc", | 1827 "synchronization/lock_unittest.cc", |
1826 "synchronization/waitable_event_unittest.cc", | 1828 "synchronization/waitable_event_unittest.cc", |
1827 "synchronization/waitable_event_watcher_unittest.cc", | 1829 "synchronization/waitable_event_watcher_unittest.cc", |
1828 "sys_info_unittest.cc", | 1830 "sys_info_unittest.cc", |
1829 "system_monitor/system_monitor_unittest.cc", | 1831 "system_monitor/system_monitor_unittest.cc", |
1830 "task/cancelable_task_tracker_unittest.cc", | 1832 "task/cancelable_task_tracker_unittest.cc", |
1831 "task_runner_util_unittest.cc", | 1833 "task_runner_util_unittest.cc", |
| 1834 "task_scheduler/delayed_task_manager_unittest.cc", |
1832 "task_scheduler/priority_queue_unittest.cc", | 1835 "task_scheduler/priority_queue_unittest.cc", |
1833 "task_scheduler/scheduler_lock_unittest.cc", | 1836 "task_scheduler/scheduler_lock_unittest.cc", |
1834 "task_scheduler/scheduler_worker_thread_unittest.cc", | 1837 "task_scheduler/scheduler_worker_thread_unittest.cc", |
1835 "task_scheduler/sequence_sort_key_unittest.cc", | 1838 "task_scheduler/sequence_sort_key_unittest.cc", |
1836 "task_scheduler/sequence_unittest.cc", | 1839 "task_scheduler/sequence_unittest.cc", |
1837 "task_scheduler/task_tracker_unittest.cc", | 1840 "task_scheduler/task_tracker_unittest.cc", |
1838 "task_scheduler/test_utils.h", | 1841 "task_scheduler/test_utils.h", |
1839 "task_scheduler/thread_pool_unittest.cc", | 1842 "task_scheduler/thread_pool_unittest.cc", |
1840 "template_util_unittest.cc", | 1843 "template_util_unittest.cc", |
1841 "test/histogram_tester_unittest.cc", | 1844 "test/histogram_tester_unittest.cc", |
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2332 | 2335 |
2333 # GYP: //base.gyp:base_java_unittest_support | 2336 # GYP: //base.gyp:base_java_unittest_support |
2334 android_library("base_java_unittest_support") { | 2337 android_library("base_java_unittest_support") { |
2335 deps = [ | 2338 deps = [ |
2336 ":base_java", | 2339 ":base_java", |
2337 ] | 2340 ] |
2338 java_files = | 2341 java_files = |
2339 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2342 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2340 } | 2343 } |
2341 } | 2344 } |
OLD | NEW |