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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 #"sys_info_openbsd.cc", # Unused in Chromium build. | 732 #"sys_info_openbsd.cc", # Unused in Chromium build. |
733 "sys_info_posix.cc", | 733 "sys_info_posix.cc", |
734 "sys_info_win.cc", | 734 "sys_info_win.cc", |
735 "system_monitor/system_monitor.cc", | 735 "system_monitor/system_monitor.cc", |
736 "system_monitor/system_monitor.h", | 736 "system_monitor/system_monitor.h", |
737 "task/cancelable_task_tracker.cc", | 737 "task/cancelable_task_tracker.cc", |
738 "task/cancelable_task_tracker.h", | 738 "task/cancelable_task_tracker.h", |
739 "task_runner.cc", | 739 "task_runner.cc", |
740 "task_runner.h", | 740 "task_runner.h", |
741 "task_runner_util.h", | 741 "task_runner_util.h", |
| 742 "task_scheduler/priority_queue.cc", |
| 743 "task_scheduler/priority_queue.h", |
742 "task_scheduler/scheduler_lock.cc", | 744 "task_scheduler/scheduler_lock.cc", |
743 "task_scheduler/scheduler_lock.h", | 745 "task_scheduler/scheduler_lock.h", |
744 "task_scheduler/sequence.cc", | 746 "task_scheduler/sequence.cc", |
745 "task_scheduler/sequence.h", | 747 "task_scheduler/sequence.h", |
746 "task_scheduler/sequence_sort_key.cc", | 748 "task_scheduler/sequence_sort_key.cc", |
747 "task_scheduler/sequence_sort_key.h", | 749 "task_scheduler/sequence_sort_key.h", |
748 "task_scheduler/task.cc", | 750 "task_scheduler/task.cc", |
749 "task_scheduler/task.h", | 751 "task_scheduler/task.h", |
750 "task_scheduler/task_traits.cc", | 752 "task_scheduler/task_traits.cc", |
751 "task_scheduler/task_traits.h", | 753 "task_scheduler/task_traits.h", |
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1689 "sync_socket_unittest.cc", | 1691 "sync_socket_unittest.cc", |
1690 "synchronization/cancellation_flag_unittest.cc", | 1692 "synchronization/cancellation_flag_unittest.cc", |
1691 "synchronization/condition_variable_unittest.cc", | 1693 "synchronization/condition_variable_unittest.cc", |
1692 "synchronization/lock_unittest.cc", | 1694 "synchronization/lock_unittest.cc", |
1693 "synchronization/waitable_event_unittest.cc", | 1695 "synchronization/waitable_event_unittest.cc", |
1694 "synchronization/waitable_event_watcher_unittest.cc", | 1696 "synchronization/waitable_event_watcher_unittest.cc", |
1695 "sys_info_unittest.cc", | 1697 "sys_info_unittest.cc", |
1696 "system_monitor/system_monitor_unittest.cc", | 1698 "system_monitor/system_monitor_unittest.cc", |
1697 "task/cancelable_task_tracker_unittest.cc", | 1699 "task/cancelable_task_tracker_unittest.cc", |
1698 "task_runner_util_unittest.cc", | 1700 "task_runner_util_unittest.cc", |
| 1701 "task_scheduler/priority_queue_unittest.cc", |
1699 "task_scheduler/scheduler_lock_unittest.cc", | 1702 "task_scheduler/scheduler_lock_unittest.cc", |
1700 "task_scheduler/sequence_sort_key_unittest.cc", | 1703 "task_scheduler/sequence_sort_key_unittest.cc", |
1701 "task_scheduler/sequence_unittest.cc", | 1704 "task_scheduler/sequence_unittest.cc", |
1702 "template_util_unittest.cc", | 1705 "template_util_unittest.cc", |
1703 "test/histogram_tester_unittest.cc", | 1706 "test/histogram_tester_unittest.cc", |
1704 "test/icu_test_util.cc", | 1707 "test/icu_test_util.cc", |
1705 "test/icu_test_util.h", | 1708 "test/icu_test_util.h", |
1706 "test/test_pending_task_unittest.cc", | 1709 "test/test_pending_task_unittest.cc", |
1707 "test/test_reg_util_win_unittest.cc", | 1710 "test/test_reg_util_win_unittest.cc", |
1708 "test/trace_event_analyzer_unittest.cc", | 1711 "test/trace_event_analyzer_unittest.cc", |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2051 | 2054 |
2052 # GYP: //base.gyp:base_java_unittest_support | 2055 # GYP: //base.gyp:base_java_unittest_support |
2053 android_library("base_java_unittest_support") { | 2056 android_library("base_java_unittest_support") { |
2054 deps = [ | 2057 deps = [ |
2055 ":base_java", | 2058 ":base_java", |
2056 ] | 2059 ] |
2057 java_files = | 2060 java_files = |
2058 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2061 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2059 } | 2062 } |
2060 } | 2063 } |
OLD | NEW |