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

Side by Side Diff: base/base.gyp

Issue 9663075: Implementation of SequencedTaskRunner based on SequencedWorkerPool. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/sequenced_task_runner_impl.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'path_service_unittest.cc', 195 'path_service_unittest.cc',
196 'pickle_unittest.cc', 196 'pickle_unittest.cc',
197 'platform_file_unittest.cc', 197 'platform_file_unittest.cc',
198 'pr_time_unittest.cc', 198 'pr_time_unittest.cc',
199 'process_util_unittest.cc', 199 'process_util_unittest.cc',
200 'process_util_unittest_mac.h', 200 'process_util_unittest_mac.h',
201 'process_util_unittest_mac.mm', 201 'process_util_unittest_mac.mm',
202 'profiler/tracked_time_unittest.cc', 202 'profiler/tracked_time_unittest.cc',
203 'property_bag_unittest.cc', 203 'property_bag_unittest.cc',
204 'rand_util_unittest.cc', 204 'rand_util_unittest.cc',
205 'sequenced_task_runner_impl_unittest.cc',
205 'scoped_native_library_unittest.cc', 206 'scoped_native_library_unittest.cc',
206 'scoped_temp_dir_unittest.cc', 207 'scoped_temp_dir_unittest.cc',
207 'sha1_unittest.cc', 208 'sha1_unittest.cc',
208 'shared_memory_unittest.cc', 209 'shared_memory_unittest.cc',
209 'stack_container_unittest.cc', 210 'stack_container_unittest.cc',
210 'string16_unittest.cc', 211 'string16_unittest.cc',
211 'string_number_conversions_unittest.cc', 212 'string_number_conversions_unittest.cc',
212 'string_piece_unittest.cc', 213 'string_piece_unittest.cc',
213 'string_split_unittest.cc', 214 'string_split_unittest.cc',
214 'string_tokenizer_unittest.cc', 215 'string_tokenizer_unittest.cc',
215 'string_util_unittest.cc', 216 'string_util_unittest.cc',
216 'stringize_macros_unittest.cc', 217 'stringize_macros_unittest.cc',
217 'stringprintf_unittest.cc', 218 'stringprintf_unittest.cc',
218 'synchronization/cancellation_flag_unittest.cc', 219 'synchronization/cancellation_flag_unittest.cc',
219 'synchronization/condition_variable_unittest.cc', 220 'synchronization/condition_variable_unittest.cc',
220 'synchronization/lock_unittest.cc', 221 'synchronization/lock_unittest.cc',
221 'synchronization/waitable_event_unittest.cc', 222 'synchronization/waitable_event_unittest.cc',
222 'synchronization/waitable_event_watcher_unittest.cc', 223 'synchronization/waitable_event_watcher_unittest.cc',
223 'sys_info_unittest.cc', 224 'sys_info_unittest.cc',
224 'sys_string_conversions_mac_unittest.mm', 225 'sys_string_conversions_mac_unittest.mm',
225 'sys_string_conversions_unittest.cc', 226 'sys_string_conversions_unittest.cc',
226 'system_monitor/system_monitor_unittest.cc', 227 'system_monitor/system_monitor_unittest.cc',
227 'template_util_unittest.cc', 228 'template_util_unittest.cc',
228 'test/trace_event_analyzer_unittest.cc', 229 'test/trace_event_analyzer_unittest.cc',
229 'threading/non_thread_safe_unittest.cc', 230 'threading/non_thread_safe_unittest.cc',
230 'threading/platform_thread_unittest.cc', 231 'threading/platform_thread_unittest.cc',
231 'threading/sequenced_worker_pool_unittest.cc', 232 'threading/sequenced_worker_pool_unittest.cc',
233 'threading/sequenced_worker_pool_unittest.h',
232 'threading/simple_thread_unittest.cc', 234 'threading/simple_thread_unittest.cc',
233 'threading/thread_checker_unittest.cc', 235 'threading/thread_checker_unittest.cc',
234 'threading/thread_collision_warner_unittest.cc', 236 'threading/thread_collision_warner_unittest.cc',
235 'threading/thread_local_storage_unittest.cc', 237 'threading/thread_local_storage_unittest.cc',
236 'threading/thread_local_unittest.cc', 238 'threading/thread_local_unittest.cc',
237 'threading/thread_unittest.cc', 239 'threading/thread_unittest.cc',
238 'threading/watchdog_unittest.cc', 240 'threading/watchdog_unittest.cc',
239 'threading/worker_pool_posix_unittest.cc', 241 'threading/worker_pool_posix_unittest.cc',
240 'threading/worker_pool_unittest.cc', 242 'threading/worker_pool_unittest.cc',
241 'time_unittest.cc', 243 'time_unittest.cc',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 'test/mock_time_provider.cc', 414 'test/mock_time_provider.cc',
413 'test/mock_time_provider.h', 415 'test/mock_time_provider.h',
414 'test/multiprocess_test.cc', 416 'test/multiprocess_test.cc',
415 'test/multiprocess_test.h', 417 'test/multiprocess_test.h',
416 'test/perf_test_suite.cc', 418 'test/perf_test_suite.cc',
417 'test/perf_test_suite.h', 419 'test/perf_test_suite.h',
418 'test/scoped_locale.cc', 420 'test/scoped_locale.cc',
419 'test/scoped_locale.h', 421 'test/scoped_locale.h',
420 'test/task_runner_test_template.cc', 422 'test/task_runner_test_template.cc',
421 'test/task_runner_test_template.h', 423 'test/task_runner_test_template.h',
424 'test/sequenced_task_runner_test_template.cc',
425 'test/sequenced_task_runner_test_template.h',
422 'test/test_file_util.h', 426 'test/test_file_util.h',
423 'test/test_file_util_linux.cc', 427 'test/test_file_util_linux.cc',
424 'test/test_file_util_mac.cc', 428 'test/test_file_util_mac.cc',
425 'test/test_file_util_posix.cc', 429 'test/test_file_util_posix.cc',
426 'test/test_file_util_win.cc', 430 'test/test_file_util_win.cc',
427 'test/test_reg_util_win.cc', 431 'test/test_reg_util_win.cc',
428 'test/test_reg_util_win.h', 432 'test/test_reg_util_win.h',
429 'test/test_suite.cc', 433 'test/test_suite.cc',
430 'test/test_suite.h', 434 'test/test_suite.h',
431 'test/test_stub_android.cc', 435 'test/test_stub_android.cc',
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 # treated as weak imports in dependents, who still must 618 # treated as weak imports in dependents, who still must
615 # #include closure_blocks_leopard_compat.h to get weak imports. 619 # #include closure_blocks_leopard_compat.h to get weak imports.
616 'type': 'none', 620 'type': 'none',
617 }], 621 }],
618 ], 622 ],
619 }, 623 },
620 ], 624 ],
621 }], 625 }],
622 ], 626 ],
623 } 627 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/sequenced_task_runner_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698