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

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/test/sequenced_task_runner_test_template.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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'synchronization/waitable_event_unittest.cc', 246 'synchronization/waitable_event_unittest.cc',
247 'synchronization/waitable_event_watcher_unittest.cc', 247 'synchronization/waitable_event_watcher_unittest.cc',
248 'sys_info_unittest.cc', 248 'sys_info_unittest.cc',
249 'sys_string_conversions_mac_unittest.mm', 249 'sys_string_conversions_mac_unittest.mm',
250 'sys_string_conversions_unittest.cc', 250 'sys_string_conversions_unittest.cc',
251 'system_monitor/system_monitor_unittest.cc', 251 'system_monitor/system_monitor_unittest.cc',
252 'template_util_unittest.cc', 252 'template_util_unittest.cc',
253 'test/trace_event_analyzer_unittest.cc', 253 'test/trace_event_analyzer_unittest.cc',
254 'threading/non_thread_safe_unittest.cc', 254 'threading/non_thread_safe_unittest.cc',
255 'threading/platform_thread_unittest.cc', 255 'threading/platform_thread_unittest.cc',
256 'threading/sequenced_task_runner_impl_unittest.cc',
256 'threading/sequenced_worker_pool_unittest.cc', 257 'threading/sequenced_worker_pool_unittest.cc',
258 'threading/sequenced_worker_pool_unittest.h',
257 'threading/simple_thread_unittest.cc', 259 'threading/simple_thread_unittest.cc',
258 'threading/thread_checker_unittest.cc', 260 'threading/thread_checker_unittest.cc',
259 'threading/thread_collision_warner_unittest.cc', 261 'threading/thread_collision_warner_unittest.cc',
260 'threading/thread_local_storage_unittest.cc', 262 'threading/thread_local_storage_unittest.cc',
261 'threading/thread_local_unittest.cc', 263 'threading/thread_local_unittest.cc',
262 'threading/thread_unittest.cc', 264 'threading/thread_unittest.cc',
263 'threading/watchdog_unittest.cc', 265 'threading/watchdog_unittest.cc',
264 'threading/worker_pool_posix_unittest.cc', 266 'threading/worker_pool_posix_unittest.cc',
265 'threading/worker_pool_unittest.cc', 267 'threading/worker_pool_unittest.cc',
266 'time_unittest.cc', 268 'time_unittest.cc',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 'test/mock_time_provider.cc', 439 'test/mock_time_provider.cc',
438 'test/mock_time_provider.h', 440 'test/mock_time_provider.h',
439 'test/multiprocess_test.cc', 441 'test/multiprocess_test.cc',
440 'test/multiprocess_test.h', 442 'test/multiprocess_test.h',
441 'test/perf_test_suite.cc', 443 'test/perf_test_suite.cc',
442 'test/perf_test_suite.h', 444 'test/perf_test_suite.h',
443 'test/scoped_locale.cc', 445 'test/scoped_locale.cc',
444 'test/scoped_locale.h', 446 'test/scoped_locale.h',
445 'test/task_runner_test_template.cc', 447 'test/task_runner_test_template.cc',
446 'test/task_runner_test_template.h', 448 'test/task_runner_test_template.h',
449 'test/sequenced_task_runner_test_template.cc',
450 'test/sequenced_task_runner_test_template.h',
447 'test/test_file_util.h', 451 'test/test_file_util.h',
448 'test/test_file_util_linux.cc', 452 'test/test_file_util_linux.cc',
449 'test/test_file_util_mac.cc', 453 'test/test_file_util_mac.cc',
450 'test/test_file_util_posix.cc', 454 'test/test_file_util_posix.cc',
451 'test/test_file_util_win.cc', 455 'test/test_file_util_win.cc',
452 'test/test_reg_util_win.cc', 456 'test/test_reg_util_win.cc',
453 'test/test_reg_util_win.h', 457 'test/test_reg_util_win.h',
454 'test/test_suite.cc', 458 'test/test_suite.cc',
455 'test/test_suite.h', 459 'test/test_suite.h',
456 'test/test_stub_android.cc', 460 'test/test_stub_android.cc',
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 # treated as weak imports in dependents, who still must 643 # treated as weak imports in dependents, who still must
640 # #include closure_blocks_leopard_compat.h to get weak imports. 644 # #include closure_blocks_leopard_compat.h to get weak imports.
641 'type': 'none', 645 'type': 'none',
642 }], 646 }],
643 ], 647 ],
644 }, 648 },
645 ], 649 ],
646 }], 650 }],
647 ], 651 ],
648 } 652 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/test/sequenced_task_runner_test_template.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698