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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 225403021: Extract Profile-independent GCMService from GCMProfileService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Restore real IO thread in unit tests. Remove sources of flakiness by waiting instead of pumping whe… Created 6 years, 8 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 | « chrome/chrome_browser.gypi ('k') | sync/notifier/gcm_network_channel.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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 'browser/search_engines/search_host_to_urls_map_unittest.cc', 1245 'browser/search_engines/search_host_to_urls_map_unittest.cc',
1246 'browser/search_engines/search_provider_install_data_unittest.cc', 1246 'browser/search_engines/search_provider_install_data_unittest.cc',
1247 'browser/search_engines/template_url_fetcher_unittest.cc', 1247 'browser/search_engines/template_url_fetcher_unittest.cc',
1248 'browser/search_engines/template_url_service_util_unittest.cc', 1248 'browser/search_engines/template_url_service_util_unittest.cc',
1249 'browser/search_engines/template_url_service_sync_unittest.cc', 1249 'browser/search_engines/template_url_service_sync_unittest.cc',
1250 'browser/search_engines/template_url_service_unittest.cc', 1250 'browser/search_engines/template_url_service_unittest.cc',
1251 'browser/search_engines/template_url_parser_unittest.cc', 1251 'browser/search_engines/template_url_parser_unittest.cc',
1252 'browser/search_engines/template_url_prepopulate_data_unittest.cc', 1252 'browser/search_engines/template_url_prepopulate_data_unittest.cc',
1253 'browser/search_engines/template_url_scraper_unittest.cc', 1253 'browser/search_engines/template_url_scraper_unittest.cc',
1254 'browser/search_engines/template_url_unittest.cc', 1254 'browser/search_engines/template_url_unittest.cc',
1255 'browser/services/gcm/fake_gcm_client_factory.cc',
1256 'browser/services/gcm/fake_gcm_client_factory.h',
1257 'browser/services/gcm/fake_signin_manager.cc',
1258 'browser/services/gcm/fake_signin_manager.h',
1255 'browser/services/gcm/gcm_client_mock.cc', 1259 'browser/services/gcm/gcm_client_mock.cc',
1256 'browser/services/gcm/gcm_client_mock.h', 1260 'browser/services/gcm/gcm_client_mock.h',
1257 'browser/services/gcm/gcm_profile_service_test_helper.cc',
1258 'browser/services/gcm/gcm_profile_service_test_helper.h',
1259 'browser/services/gcm/gcm_profile_service_unittest.cc', 1261 'browser/services/gcm/gcm_profile_service_unittest.cc',
1262 'browser/services/gcm/gcm_service_unittest.cc',
1260 'browser/sessions/persistent_tab_restore_service_unittest.cc', 1263 'browser/sessions/persistent_tab_restore_service_unittest.cc',
1261 'browser/sessions/restore_on_startup_policy_handler_unittest.cc', 1264 'browser/sessions/restore_on_startup_policy_handler_unittest.cc',
1262 'browser/sessions/session_backend_unittest.cc', 1265 'browser/sessions/session_backend_unittest.cc',
1263 'browser/sessions/session_service_unittest.cc', 1266 'browser/sessions/session_service_unittest.cc',
1264 'browser/sessions/session_types_unittest.cc', 1267 'browser/sessions/session_types_unittest.cc',
1265 'browser/shell_integration_linux_unittest.cc', 1268 'browser/shell_integration_linux_unittest.cc',
1266 'browser/shell_integration_win_unittest.cc', 1269 'browser/shell_integration_win_unittest.cc',
1267 'browser/signin/account_reconcilor_unittest.cc', 1270 'browser/signin/account_reconcilor_unittest.cc',
1268 'browser/signin/local_auth_unittest.cc', 1271 'browser/signin/local_auth_unittest.cc',
1269 'browser/signin/profile_oauth2_token_service_request_unittest.cc', 1272 'browser/signin/profile_oauth2_token_service_request_unittest.cc',
(...skipping 1574 matching lines...) Expand 10 before | Expand all | Expand 10 after
2844 'browser/ui/app_list/test/fake_profile_store.h', 2847 'browser/ui/app_list/test/fake_profile_store.h',
2845 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 2848 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2846 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', 2849 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc',
2847 'browser/ui/views/app_list/win/app_list_win_unittest.cc', 2850 'browser/ui/views/app_list/win/app_list_win_unittest.cc',
2848 ], 2851 ],
2849 }, 2852 },
2850 ], 2853 ],
2851 }], 2854 }],
2852 ], # 'conditions' 2855 ], # 'conditions'
2853 } 2856 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | sync/notifier/gcm_network_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698