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

Side by Side Diff: base/BUILD.gn

Issue 1701343003: TaskScheduler [13] TaskSchedulerImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@s_6_threadpool
Patch Set: fix ios build error Created 4 years, 7 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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 "task_scheduler/scheduler_worker_thread_stack.cc", 773 "task_scheduler/scheduler_worker_thread_stack.cc",
774 "task_scheduler/scheduler_worker_thread_stack.h", 774 "task_scheduler/scheduler_worker_thread_stack.h",
775 "task_scheduler/sequence.cc", 775 "task_scheduler/sequence.cc",
776 "task_scheduler/sequence.h", 776 "task_scheduler/sequence.h",
777 "task_scheduler/sequence_sort_key.cc", 777 "task_scheduler/sequence_sort_key.cc",
778 "task_scheduler/sequence_sort_key.h", 778 "task_scheduler/sequence_sort_key.h",
779 "task_scheduler/task.cc", 779 "task_scheduler/task.cc",
780 "task_scheduler/task.h", 780 "task_scheduler/task.h",
781 "task_scheduler/task_scheduler.cc", 781 "task_scheduler/task_scheduler.cc",
782 "task_scheduler/task_scheduler.h", 782 "task_scheduler/task_scheduler.h",
783 "task_scheduler/task_scheduler_impl.cc",
784 "task_scheduler/task_scheduler_impl.h",
783 "task_scheduler/task_tracker.cc", 785 "task_scheduler/task_tracker.cc",
784 "task_scheduler/task_tracker.h", 786 "task_scheduler/task_tracker.h",
785 "task_scheduler/task_traits.cc", 787 "task_scheduler/task_traits.cc",
786 "task_scheduler/task_traits.h", 788 "task_scheduler/task_traits.h",
787 "template_util.h", 789 "template_util.h",
788 "third_party/dmg_fp/dmg_fp.h", 790 "third_party/dmg_fp/dmg_fp.h",
789 "third_party/dmg_fp/dtoa_wrapper.cc", 791 "third_party/dmg_fp/dtoa_wrapper.cc",
790 "third_party/dmg_fp/g_fmt.cc", 792 "third_party/dmg_fp/g_fmt.cc",
791 "third_party/icu/icu_utf.cc", 793 "third_party/icu/icu_utf.cc",
792 "third_party/icu/icu_utf.h", 794 "third_party/icu/icu_utf.h",
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after
1853 "task/cancelable_task_tracker_unittest.cc", 1855 "task/cancelable_task_tracker_unittest.cc",
1854 "task_runner_util_unittest.cc", 1856 "task_runner_util_unittest.cc",
1855 "task_scheduler/delayed_task_manager_unittest.cc", 1857 "task_scheduler/delayed_task_manager_unittest.cc",
1856 "task_scheduler/priority_queue_unittest.cc", 1858 "task_scheduler/priority_queue_unittest.cc",
1857 "task_scheduler/scheduler_lock_unittest.cc", 1859 "task_scheduler/scheduler_lock_unittest.cc",
1858 "task_scheduler/scheduler_thread_pool_impl_unittest.cc", 1860 "task_scheduler/scheduler_thread_pool_impl_unittest.cc",
1859 "task_scheduler/scheduler_worker_thread_stack_unittest.cc", 1861 "task_scheduler/scheduler_worker_thread_stack_unittest.cc",
1860 "task_scheduler/scheduler_worker_thread_unittest.cc", 1862 "task_scheduler/scheduler_worker_thread_unittest.cc",
1861 "task_scheduler/sequence_sort_key_unittest.cc", 1863 "task_scheduler/sequence_sort_key_unittest.cc",
1862 "task_scheduler/sequence_unittest.cc", 1864 "task_scheduler/sequence_unittest.cc",
1865 "task_scheduler/task_scheduler_impl_unittest.cc",
1863 "task_scheduler/task_tracker_unittest.cc", 1866 "task_scheduler/task_tracker_unittest.cc",
1864 "task_scheduler/test_task_factory.cc", 1867 "task_scheduler/test_task_factory.cc",
1865 "task_scheduler/test_task_factory.h", 1868 "task_scheduler/test_task_factory.h",
1866 "task_scheduler/test_utils.h", 1869 "task_scheduler/test_utils.h",
1867 "template_util_unittest.cc", 1870 "template_util_unittest.cc",
1868 "test/histogram_tester_unittest.cc", 1871 "test/histogram_tester_unittest.cc",
1869 "test/icu_test_util.cc", 1872 "test/icu_test_util.cc",
1870 "test/icu_test_util.h", 1873 "test/icu_test_util.h",
1871 "test/test_pending_task_unittest.cc", 1874 "test/test_pending_task_unittest.cc",
1872 "test/test_reg_util_win_unittest.cc", 1875 "test/test_reg_util_win_unittest.cc",
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
2358 2361
2359 # GYP: //base.gyp:base_java_unittest_support 2362 # GYP: //base.gyp:base_java_unittest_support
2360 android_library("base_java_unittest_support") { 2363 android_library("base_java_unittest_support") {
2361 deps = [ 2364 deps = [
2362 ":base_java", 2365 ":base_java",
2363 ] 2366 ]
2364 java_files = 2367 java_files =
2365 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2368 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2366 } 2369 }
2367 } 2370 }
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