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

Side by Side Diff: base/BUILD.gn

Issue 1698183005: Reference CL for the new task scheduler. (Closed) Base URL: https://luckyluke-private.googlesource.com/src@bigmaster2
Patch Set: Created 4 years, 10 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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/delayed_task_manager.cc",
743 "task_scheduler/delayed_task_manager.h",
744 "task_scheduler/post_task.cc",
745 "task_scheduler/post_task.h",
746 "task_scheduler/priority_queue.cc",
747 "task_scheduler/priority_queue.h",
748 "task_scheduler/scheduler_lock.cc",
749 "task_scheduler/scheduler_lock.h",
750 "task_scheduler/sequence.cc",
751 "task_scheduler/sequence.h",
752 "task_scheduler/sequence_sort_key.cc",
753 "task_scheduler/sequence_sort_key.h",
754 "task_scheduler/shutdown_manager.cc",
755 "task_scheduler/shutdown_manager.h",
756 "task_scheduler/task.cc",
757 "task_scheduler/task.h",
758 "task_scheduler/task_scheduler.cc",
759 "task_scheduler/task_scheduler.h",
760 "task_scheduler/task_scheduler_impl.cc",
761 "task_scheduler/task_scheduler_impl.h",
762 "task_scheduler/task_traits.cc",
763 "task_scheduler/task_traits.h",
764 "task_scheduler/thread_pool.cc",
765 "task_scheduler/thread_pool.h",
766 "task_scheduler/utils.cc",
767 "task_scheduler/utils.h",
768 "task_scheduler/worker_thread.cc",
769 "task_scheduler/worker_thread.h",
742 "template_util.h", 770 "template_util.h",
743 "third_party/dmg_fp/dmg_fp.h", 771 "third_party/dmg_fp/dmg_fp.h",
744 "third_party/dmg_fp/dtoa_wrapper.cc", 772 "third_party/dmg_fp/dtoa_wrapper.cc",
745 "third_party/dmg_fp/g_fmt.cc", 773 "third_party/dmg_fp/g_fmt.cc",
746 "third_party/icu/icu_utf.cc", 774 "third_party/icu/icu_utf.cc",
747 "third_party/icu/icu_utf.h", 775 "third_party/icu/icu_utf.h",
748 "third_party/nspr/prtime.cc", 776 "third_party/nspr/prtime.cc",
749 "third_party/nspr/prtime.h", 777 "third_party/nspr/prtime.h",
750 "third_party/superfasthash/superfasthash.c", 778 "third_party/superfasthash/superfasthash.c",
751 "thread_task_runner_handle.cc", 779 "thread_task_runner_handle.cc",
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 "sync_socket_unittest.cc", 1707 "sync_socket_unittest.cc",
1680 "synchronization/cancellation_flag_unittest.cc", 1708 "synchronization/cancellation_flag_unittest.cc",
1681 "synchronization/condition_variable_unittest.cc", 1709 "synchronization/condition_variable_unittest.cc",
1682 "synchronization/lock_unittest.cc", 1710 "synchronization/lock_unittest.cc",
1683 "synchronization/waitable_event_unittest.cc", 1711 "synchronization/waitable_event_unittest.cc",
1684 "synchronization/waitable_event_watcher_unittest.cc", 1712 "synchronization/waitable_event_watcher_unittest.cc",
1685 "sys_info_unittest.cc", 1713 "sys_info_unittest.cc",
1686 "system_monitor/system_monitor_unittest.cc", 1714 "system_monitor/system_monitor_unittest.cc",
1687 "task/cancelable_task_tracker_unittest.cc", 1715 "task/cancelable_task_tracker_unittest.cc",
1688 "task_runner_util_unittest.cc", 1716 "task_runner_util_unittest.cc",
1717 "task_scheduler/delayed_task_manager_unittest.cc",
1718 "task_scheduler/priority_queue_unittest.cc",
1719 "task_scheduler/scheduler_lock_unittest.cc",
1720 "task_scheduler/sequence_sort_key_unittest.cc",
1721 "task_scheduler/sequence_unittest.cc",
1722 "task_scheduler/shutdown_manager_unittest.cc",
1723 "task_scheduler/task_scheduler_impl_unittest.cc",
1724 "task_scheduler/test_util.cc",
1725 "task_scheduler/test_util.h",
1726 "task_scheduler/thread_pool_unittest.cc",
1727 "task_scheduler/utils_unittest.cc",
1728 "task_scheduler/worker_thread_unittest.cc",
1689 "template_util_unittest.cc", 1729 "template_util_unittest.cc",
1690 "test/histogram_tester_unittest.cc", 1730 "test/histogram_tester_unittest.cc",
1691 "test/icu_test_util.cc", 1731 "test/icu_test_util.cc",
1692 "test/icu_test_util.h", 1732 "test/icu_test_util.h",
1693 "test/test_pending_task_unittest.cc", 1733 "test/test_pending_task_unittest.cc",
1694 "test/test_reg_util_win_unittest.cc", 1734 "test/test_reg_util_win_unittest.cc",
1695 "test/trace_event_analyzer_unittest.cc", 1735 "test/trace_event_analyzer_unittest.cc",
1696 "test/user_action_tester_unittest.cc", 1736 "test/user_action_tester_unittest.cc",
1697 "threading/non_thread_safe_unittest.cc", 1737 "threading/non_thread_safe_unittest.cc",
1698 "threading/platform_thread_unittest.cc", 1738 "threading/platform_thread_unittest.cc",
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
2038 2078
2039 # GYP: //base.gyp:base_java_unittest_support 2079 # GYP: //base.gyp:base_java_unittest_support
2040 android_library("base_java_unittest_support") { 2080 android_library("base_java_unittest_support") {
2041 deps = [ 2081 deps = [
2042 ":base_java", 2082 ":base_java",
2043 ] 2083 ]
2044 java_files = 2084 java_files =
2045 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2085 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2046 } 2086 }
2047 } 2087 }
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