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

Side by Side Diff: base/base.gyp

Issue 12314015: Make SQLitePersistentCookieStore run on injected SequencedTaskRunners vs named BrowserThreads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Relax a newly introduced NOTREACHED. Created 7 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 | chrome/browser/net/sqlite_persistent_cookie_store.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) 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 'synchronization/condition_variable_unittest.cc', 561 'synchronization/condition_variable_unittest.cc',
562 'synchronization/lock_unittest.cc', 562 'synchronization/lock_unittest.cc',
563 'synchronization/waitable_event_unittest.cc', 563 'synchronization/waitable_event_unittest.cc',
564 'synchronization/waitable_event_watcher_unittest.cc', 564 'synchronization/waitable_event_watcher_unittest.cc',
565 'sys_info_unittest.cc', 565 'sys_info_unittest.cc',
566 'system_monitor/system_monitor_unittest.cc', 566 'system_monitor/system_monitor_unittest.cc',
567 'task_runner_util_unittest.cc', 567 'task_runner_util_unittest.cc',
568 'template_util_unittest.cc', 568 'template_util_unittest.cc',
569 'test/expectations/expectation_unittest.cc', 569 'test/expectations/expectation_unittest.cc',
570 'test/expectations/parser_unittest.cc', 570 'test/expectations/parser_unittest.cc',
571 'test/sequenced_worker_pool_owner.cc',
572 'test/sequenced_worker_pool_owner.h',
573 'test/trace_event_analyzer_unittest.cc', 571 'test/trace_event_analyzer_unittest.cc',
574 'threading/non_thread_safe_unittest.cc', 572 'threading/non_thread_safe_unittest.cc',
575 'threading/platform_thread_unittest.cc', 573 'threading/platform_thread_unittest.cc',
576 'threading/sequenced_worker_pool_unittest.cc', 574 'threading/sequenced_worker_pool_unittest.cc',
577 'threading/simple_thread_unittest.cc', 575 'threading/simple_thread_unittest.cc',
578 'threading/thread_checker_unittest.cc', 576 'threading/thread_checker_unittest.cc',
579 'threading/thread_collision_warner_unittest.cc', 577 'threading/thread_collision_warner_unittest.cc',
580 'threading/thread_id_name_manager_unittest.cc', 578 'threading/thread_id_name_manager_unittest.cc',
581 'threading/thread_local_storage_unittest.cc', 579 'threading/thread_local_storage_unittest.cc',
582 'threading/thread_local_unittest.cc', 580 'threading/thread_local_unittest.cc',
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 'test/null_task_runner.cc', 825 'test/null_task_runner.cc',
828 'test/null_task_runner.h', 826 'test/null_task_runner.h',
829 'test/perf_test_suite.cc', 827 'test/perf_test_suite.cc',
830 'test/perf_test_suite.h', 828 'test/perf_test_suite.h',
831 'test/scoped_locale.cc', 829 'test/scoped_locale.cc',
832 'test/scoped_locale.h', 830 'test/scoped_locale.h',
833 'test/scoped_path_override.cc', 831 'test/scoped_path_override.cc',
834 'test/scoped_path_override.h', 832 'test/scoped_path_override.h',
835 'test/sequenced_task_runner_test_template.cc', 833 'test/sequenced_task_runner_test_template.cc',
836 'test/sequenced_task_runner_test_template.h', 834 'test/sequenced_task_runner_test_template.h',
835 'test/sequenced_worker_pool_owner.cc',
836 'test/sequenced_worker_pool_owner.h',
837 'test/simple_test_clock.cc', 837 'test/simple_test_clock.cc',
838 'test/simple_test_clock.h', 838 'test/simple_test_clock.h',
839 'test/simple_test_tick_clock.cc', 839 'test/simple_test_tick_clock.cc',
840 'test/simple_test_tick_clock.h', 840 'test/simple_test_tick_clock.h',
841 'test/task_runner_test_template.cc', 841 'test/task_runner_test_template.cc',
842 'test/task_runner_test_template.h', 842 'test/task_runner_test_template.h',
843 'test/test_file_util.h', 843 'test/test_file_util.h',
844 'test/test_file_util_linux.cc', 844 'test/test_file_util_linux.cc',
845 'test/test_file_util_mac.cc', 845 'test/test_file_util_mac.cc',
846 'test/test_file_util_posix.cc', 846 'test/test_file_util_posix.cc',
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 'base_unittests.isolate', 1188 'base_unittests.isolate',
1189 ], 1189 ],
1190 'sources': [ 1190 'sources': [
1191 'base_unittests.isolate', 1191 'base_unittests.isolate',
1192 ], 1192 ],
1193 }, 1193 },
1194 ], 1194 ],
1195 }], 1195 }],
1196 ], 1196 ],
1197 } 1197 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/net/sqlite_persistent_cookie_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698