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

Side by Side Diff: base/BUILD.gn

Issue 2427963002: Support FileDescriptorWatcher in TaskScheduler. (Closed)
Patch Set: fix build error (add BASE_EXPORT) Created 4 years, 1 month 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/task_scheduler/task_scheduler_impl.h » ('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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 "task_scheduler/sequence_sort_key.cc", 804 "task_scheduler/sequence_sort_key.cc",
805 "task_scheduler/sequence_sort_key.h", 805 "task_scheduler/sequence_sort_key.h",
806 "task_scheduler/task.cc", 806 "task_scheduler/task.cc",
807 "task_scheduler/task.h", 807 "task_scheduler/task.h",
808 "task_scheduler/task_scheduler.cc", 808 "task_scheduler/task_scheduler.cc",
809 "task_scheduler/task_scheduler.h", 809 "task_scheduler/task_scheduler.h",
810 "task_scheduler/task_scheduler_impl.cc", 810 "task_scheduler/task_scheduler_impl.cc",
811 "task_scheduler/task_scheduler_impl.h", 811 "task_scheduler/task_scheduler_impl.h",
812 "task_scheduler/task_tracker.cc", 812 "task_scheduler/task_tracker.cc",
813 "task_scheduler/task_tracker.h", 813 "task_scheduler/task_tracker.h",
814 "task_scheduler/task_tracker_posix.cc",
815 "task_scheduler/task_tracker_posix.h",
814 "task_scheduler/task_traits.cc", 816 "task_scheduler/task_traits.cc",
815 "task_scheduler/task_traits.h", 817 "task_scheduler/task_traits.h",
816 "template_util.h", 818 "template_util.h",
817 "third_party/dmg_fp/dmg_fp.h", 819 "third_party/dmg_fp/dmg_fp.h",
818 "third_party/dmg_fp/dtoa_wrapper.cc", 820 "third_party/dmg_fp/dtoa_wrapper.cc",
819 "third_party/dmg_fp/g_fmt.cc", 821 "third_party/dmg_fp/g_fmt.cc",
820 "third_party/icu/icu_utf.cc", 822 "third_party/icu/icu_utf.cc",
821 "third_party/icu/icu_utf.h", 823 "third_party/icu/icu_utf.h",
822 "third_party/nspr/prtime.cc", 824 "third_party/nspr/prtime.cc",
823 "third_party/nspr/prtime.h", 825 "third_party/nspr/prtime.h",
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1167 "files/file_util_posix.cc", 1169 "files/file_util_posix.cc",
1168 "json/json_file_value_serializer.cc", 1170 "json/json_file_value_serializer.cc",
1169 "json/json_file_value_serializer.h", 1171 "json/json_file_value_serializer.h",
1170 "message_loop/message_pump_libevent.cc", 1172 "message_loop/message_pump_libevent.cc",
1171 "message_loop/message_pump_libevent.h", 1173 "message_loop/message_pump_libevent.h",
1172 "process/kill_posix.cc", 1174 "process/kill_posix.cc",
1173 "process/launch.cc", 1175 "process/launch.cc",
1174 "process/launch.h", 1176 "process/launch.h",
1175 "process/launch_posix.cc", 1177 "process/launch_posix.cc",
1176 "rand_util_posix.cc", 1178 "rand_util_posix.cc",
1179 "task_scheduler/task_tracker_posix.cc",
1180 "task_scheduler/task_tracker_posix.h",
1177 ] 1181 ]
1178 } 1182 }
1179 } else { 1183 } else {
1180 # Remove NaCl stuff. 1184 # Remove NaCl stuff.
1181 sources -= [ 1185 sources -= [
1182 "memory/shared_memory_nacl.cc", 1186 "memory/shared_memory_nacl.cc",
1183 "os_compat_nacl.cc", 1187 "os_compat_nacl.cc",
1184 "os_compat_nacl.h", 1188 "os_compat_nacl.h",
1185 "rand_util_nacl.cc", 1189 "rand_util_nacl.cc",
1186 "synchronization/read_write_lock_nacl.cc", 1190 "synchronization/read_write_lock_nacl.cc",
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
1923 "task_runner_util_unittest.cc", 1927 "task_runner_util_unittest.cc",
1924 "task_scheduler/delayed_task_manager_unittest.cc", 1928 "task_scheduler/delayed_task_manager_unittest.cc",
1925 "task_scheduler/priority_queue_unittest.cc", 1929 "task_scheduler/priority_queue_unittest.cc",
1926 "task_scheduler/scheduler_lock_unittest.cc", 1930 "task_scheduler/scheduler_lock_unittest.cc",
1927 "task_scheduler/scheduler_worker_pool_impl_unittest.cc", 1931 "task_scheduler/scheduler_worker_pool_impl_unittest.cc",
1928 "task_scheduler/scheduler_worker_stack_unittest.cc", 1932 "task_scheduler/scheduler_worker_stack_unittest.cc",
1929 "task_scheduler/scheduler_worker_unittest.cc", 1933 "task_scheduler/scheduler_worker_unittest.cc",
1930 "task_scheduler/sequence_sort_key_unittest.cc", 1934 "task_scheduler/sequence_sort_key_unittest.cc",
1931 "task_scheduler/sequence_unittest.cc", 1935 "task_scheduler/sequence_unittest.cc",
1932 "task_scheduler/task_scheduler_impl_unittest.cc", 1936 "task_scheduler/task_scheduler_impl_unittest.cc",
1937 "task_scheduler/task_tracker_posix_unittest.cc",
1933 "task_scheduler/task_tracker_unittest.cc", 1938 "task_scheduler/task_tracker_unittest.cc",
1934 "task_scheduler/task_unittest.cc", 1939 "task_scheduler/task_unittest.cc",
1935 "task_scheduler/test_task_factory.cc", 1940 "task_scheduler/test_task_factory.cc",
1936 "task_scheduler/test_task_factory.h", 1941 "task_scheduler/test_task_factory.h",
1937 "template_util_unittest.cc", 1942 "template_util_unittest.cc",
1938 "test/histogram_tester_unittest.cc", 1943 "test/histogram_tester_unittest.cc",
1939 "test/test_pending_task_unittest.cc", 1944 "test/test_pending_task_unittest.cc",
1940 "test/test_reg_util_win_unittest.cc", 1945 "test/test_reg_util_win_unittest.cc",
1941 "test/trace_event_analyzer_unittest.cc", 1946 "test/trace_event_analyzer_unittest.cc",
1942 "test/user_action_tester_unittest.cc", 1947 "test/user_action_tester_unittest.cc",
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2445 testonly = true 2450 testonly = true
2446 deps = [ 2451 deps = [
2447 ":base_java", 2452 ":base_java",
2448 ] 2453 ]
2449 java_files = [ 2454 java_files = [
2450 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2455 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2451 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2456 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2452 ] 2457 ]
2453 } 2458 }
2454 } 2459 }
OLDNEW
« no previous file with comments | « no previous file | base/task_scheduler/task_scheduler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698