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

Side by Side Diff: base/BUILD.gn

Issue 1705253002: TaskScheduler [3/9] Task and Sequence (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@s_1_scheduler_lock
Patch Set: CR from Dana and Gab #40-41 Created 4 years, 9 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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 "system_monitor/system_monitor.cc", 760 "system_monitor/system_monitor.cc",
761 "system_monitor/system_monitor.h", 761 "system_monitor/system_monitor.h",
762 "task/cancelable_task_tracker.cc", 762 "task/cancelable_task_tracker.cc",
763 "task/cancelable_task_tracker.h", 763 "task/cancelable_task_tracker.h",
764 "task_runner.cc", 764 "task_runner.cc",
765 "task_runner.h", 765 "task_runner.h",
766 "task_runner_util.h", 766 "task_runner_util.h",
767 "task_scheduler/scheduler_lock.h", 767 "task_scheduler/scheduler_lock.h",
768 "task_scheduler/scheduler_lock_impl.cc", 768 "task_scheduler/scheduler_lock_impl.cc",
769 "task_scheduler/scheduler_lock_impl.h", 769 "task_scheduler/scheduler_lock_impl.h",
770 "task_scheduler/sequence.cc",
771 "task_scheduler/sequence.h",
772 "task_scheduler/sequence_sort_key.cc",
773 "task_scheduler/sequence_sort_key.h",
774 "task_scheduler/task.cc",
775 "task_scheduler/task.h",
770 "task_scheduler/task_traits.cc", 776 "task_scheduler/task_traits.cc",
771 "task_scheduler/task_traits.h", 777 "task_scheduler/task_traits.h",
772 "template_util.h", 778 "template_util.h",
773 "third_party/dmg_fp/dmg_fp.h", 779 "third_party/dmg_fp/dmg_fp.h",
774 "third_party/dmg_fp/dtoa_wrapper.cc", 780 "third_party/dmg_fp/dtoa_wrapper.cc",
775 "third_party/dmg_fp/g_fmt.cc", 781 "third_party/dmg_fp/g_fmt.cc",
776 "third_party/icu/icu_utf.cc", 782 "third_party/icu/icu_utf.cc",
777 "third_party/icu/icu_utf.h", 783 "third_party/icu/icu_utf.h",
778 "third_party/nspr/prtime.cc", 784 "third_party/nspr/prtime.cc",
779 "third_party/nspr/prtime.h", 785 "third_party/nspr/prtime.h",
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 "synchronization/cancellation_flag_unittest.cc", 1806 "synchronization/cancellation_flag_unittest.cc",
1801 "synchronization/condition_variable_unittest.cc", 1807 "synchronization/condition_variable_unittest.cc",
1802 "synchronization/lock_unittest.cc", 1808 "synchronization/lock_unittest.cc",
1803 "synchronization/waitable_event_unittest.cc", 1809 "synchronization/waitable_event_unittest.cc",
1804 "synchronization/waitable_event_watcher_unittest.cc", 1810 "synchronization/waitable_event_watcher_unittest.cc",
1805 "sys_info_unittest.cc", 1811 "sys_info_unittest.cc",
1806 "system_monitor/system_monitor_unittest.cc", 1812 "system_monitor/system_monitor_unittest.cc",
1807 "task/cancelable_task_tracker_unittest.cc", 1813 "task/cancelable_task_tracker_unittest.cc",
1808 "task_runner_util_unittest.cc", 1814 "task_runner_util_unittest.cc",
1809 "task_scheduler/scheduler_lock_unittest.cc", 1815 "task_scheduler/scheduler_lock_unittest.cc",
1816 "task_scheduler/sequence_sort_key_unittest.cc",
1817 "task_scheduler/sequence_unittest.cc",
1810 "template_util_unittest.cc", 1818 "template_util_unittest.cc",
1811 "test/histogram_tester_unittest.cc", 1819 "test/histogram_tester_unittest.cc",
1812 "test/icu_test_util.cc", 1820 "test/icu_test_util.cc",
1813 "test/icu_test_util.h", 1821 "test/icu_test_util.h",
1814 "test/test_pending_task_unittest.cc", 1822 "test/test_pending_task_unittest.cc",
1815 "test/test_reg_util_win_unittest.cc", 1823 "test/test_reg_util_win_unittest.cc",
1816 "test/trace_event_analyzer_unittest.cc", 1824 "test/trace_event_analyzer_unittest.cc",
1817 "test/user_action_tester_unittest.cc", 1825 "test/user_action_tester_unittest.cc",
1818 "threading/non_thread_safe_unittest.cc", 1826 "threading/non_thread_safe_unittest.cc",
1819 "threading/platform_thread_unittest.cc", 1827 "threading/platform_thread_unittest.cc",
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
2201 2209
2202 # GYP: //base.gyp:base_java_unittest_support 2210 # GYP: //base.gyp:base_java_unittest_support
2203 android_library("base_java_unittest_support") { 2211 android_library("base_java_unittest_support") {
2204 deps = [ 2212 deps = [
2205 ":base_java", 2213 ":base_java",
2206 ] 2214 ]
2207 java_files = 2215 java_files =
2208 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2216 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2209 } 2217 }
2210 } 2218 }
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