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

Side by Side Diff: base/BUILD.gn

Issue 2042383004: Introduce TaskRunnerHandle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: support for parallel tasks from SequencedWorkerPool Created 4 years, 6 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') | base/threading/sequenced_task_runner_handle.h » ('J')
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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 "threading/platform_thread_posix.cc", 815 "threading/platform_thread_posix.cc",
816 "threading/platform_thread_win.cc", 816 "threading/platform_thread_win.cc",
817 "threading/post_task_and_reply_impl.cc", 817 "threading/post_task_and_reply_impl.cc",
818 "threading/post_task_and_reply_impl.h", 818 "threading/post_task_and_reply_impl.h",
819 "threading/sequenced_task_runner_handle.cc", 819 "threading/sequenced_task_runner_handle.cc",
820 "threading/sequenced_task_runner_handle.h", 820 "threading/sequenced_task_runner_handle.h",
821 "threading/sequenced_worker_pool.cc", 821 "threading/sequenced_worker_pool.cc",
822 "threading/sequenced_worker_pool.h", 822 "threading/sequenced_worker_pool.h",
823 "threading/simple_thread.cc", 823 "threading/simple_thread.cc",
824 "threading/simple_thread.h", 824 "threading/simple_thread.h",
825 "threading/task_runner_handle.cc",
fdoray 2016/06/17 14:29:01 Why is this in base/threading/? Could it be in bas
gab 2016/06/20 19:55:35 I agree that this is weird, I had the same thought
826 "threading/task_runner_handle.h",
827 "threading/task_runner_handle_internal.h",
825 "threading/thread.cc", 828 "threading/thread.cc",
826 "threading/thread.h", 829 "threading/thread.h",
827 "threading/thread_checker.h", 830 "threading/thread_checker.h",
828 "threading/thread_checker_impl.cc", 831 "threading/thread_checker_impl.cc",
829 "threading/thread_checker_impl.h", 832 "threading/thread_checker_impl.h",
830 "threading/thread_collision_warner.cc", 833 "threading/thread_collision_warner.cc",
831 "threading/thread_collision_warner.h", 834 "threading/thread_collision_warner.h",
832 "threading/thread_id_name_manager.cc", 835 "threading/thread_id_name_manager.cc",
833 "threading/thread_id_name_manager.h", 836 "threading/thread_id_name_manager.h",
834 "threading/thread_local.h", 837 "threading/thread_local.h",
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1889 "test/icu_test_util.h", 1892 "test/icu_test_util.h",
1890 "test/test_pending_task_unittest.cc", 1893 "test/test_pending_task_unittest.cc",
1891 "test/test_reg_util_win_unittest.cc", 1894 "test/test_reg_util_win_unittest.cc",
1892 "test/trace_event_analyzer_unittest.cc", 1895 "test/trace_event_analyzer_unittest.cc",
1893 "test/user_action_tester_unittest.cc", 1896 "test/user_action_tester_unittest.cc",
1894 "threading/non_thread_safe_unittest.cc", 1897 "threading/non_thread_safe_unittest.cc",
1895 "threading/platform_thread_unittest.cc", 1898 "threading/platform_thread_unittest.cc",
1896 "threading/sequenced_task_runner_handle_unittest.cc", 1899 "threading/sequenced_task_runner_handle_unittest.cc",
1897 "threading/sequenced_worker_pool_unittest.cc", 1900 "threading/sequenced_worker_pool_unittest.cc",
1898 "threading/simple_thread_unittest.cc", 1901 "threading/simple_thread_unittest.cc",
1902 "threading/task_runner_handle_unittest.cc",
1899 "threading/thread_checker_unittest.cc", 1903 "threading/thread_checker_unittest.cc",
1900 "threading/thread_collision_warner_unittest.cc", 1904 "threading/thread_collision_warner_unittest.cc",
1901 "threading/thread_id_name_manager_unittest.cc", 1905 "threading/thread_id_name_manager_unittest.cc",
1902 "threading/thread_local_storage_unittest.cc", 1906 "threading/thread_local_storage_unittest.cc",
1903 "threading/thread_local_unittest.cc", 1907 "threading/thread_local_unittest.cc",
1904 "threading/thread_unittest.cc", 1908 "threading/thread_unittest.cc",
1905 "threading/watchdog_unittest.cc", 1909 "threading/watchdog_unittest.cc",
1906 "threading/worker_pool_posix_unittest.cc", 1910 "threading/worker_pool_posix_unittest.cc",
1907 "threading/worker_pool_unittest.cc", 1911 "threading/worker_pool_unittest.cc",
1908 "time/pr_time_unittest.cc", 1912 "time/pr_time_unittest.cc",
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
2391 2395
2392 # GYP: //base.gyp:base_java_unittest_support 2396 # GYP: //base.gyp:base_java_unittest_support
2393 android_library("base_java_unittest_support") { 2397 android_library("base_java_unittest_support") {
2394 deps = [ 2398 deps = [
2395 ":base_java", 2399 ":base_java",
2396 ] 2400 ]
2397 java_files = 2401 java_files =
2398 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2402 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2399 } 2403 }
2400 } 2404 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/threading/sequenced_task_runner_handle.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698