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

Side by Side Diff: components/sync_driver.gypi

Issue 1310553005: [Sync] Replace ProfileSyncComponentsFactory with SyncClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Really fix GN Created 5 years, 3 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/sync_driver 8 # GN version: //components/sync_driver
9 'target_name': 'sync_driver', 9 'target_name': 'sync_driver',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'sync_driver/non_blocking_data_type_manager.cc', 76 'sync_driver/non_blocking_data_type_manager.cc',
77 'sync_driver/non_blocking_data_type_manager.h', 77 'sync_driver/non_blocking_data_type_manager.h',
78 'sync_driver/non_ui_data_type_controller.cc', 78 'sync_driver/non_ui_data_type_controller.cc',
79 'sync_driver/non_ui_data_type_controller.h', 79 'sync_driver/non_ui_data_type_controller.h',
80 'sync_driver/open_tabs_ui_delegate.cc', 80 'sync_driver/open_tabs_ui_delegate.cc',
81 'sync_driver/open_tabs_ui_delegate.h', 81 'sync_driver/open_tabs_ui_delegate.h',
82 'sync_driver/pref_names.cc', 82 'sync_driver/pref_names.cc',
83 'sync_driver/pref_names.h', 83 'sync_driver/pref_names.h',
84 'sync_driver/profile_sync_auth_provider.cc', 84 'sync_driver/profile_sync_auth_provider.cc',
85 'sync_driver/profile_sync_auth_provider.h', 85 'sync_driver/profile_sync_auth_provider.h',
86 'sync_driver/profile_sync_components_factory.h',
87 'sync_driver/protocol_event_observer.cc', 86 'sync_driver/protocol_event_observer.cc',
88 'sync_driver/protocol_event_observer.h', 87 'sync_driver/protocol_event_observer.h',
89 'sync_driver/proxy_data_type_controller.cc', 88 'sync_driver/proxy_data_type_controller.cc',
90 'sync_driver/proxy_data_type_controller.h', 89 'sync_driver/proxy_data_type_controller.h',
91 'sync_driver/shared_change_processor.cc', 90 'sync_driver/shared_change_processor.cc',
92 'sync_driver/shared_change_processor.h', 91 'sync_driver/shared_change_processor.h',
93 'sync_driver/shared_change_processor_ref.cc', 92 'sync_driver/shared_change_processor_ref.cc',
94 'sync_driver/shared_change_processor_ref.h', 93 'sync_driver/shared_change_processor_ref.h',
95 'sync_driver/sync_api_component_factory.h', 94 'sync_driver/sync_api_component_factory.h',
96 'sync_driver/sync_client.cc', 95 'sync_driver/sync_client.cc',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 'sync_driver/data_type_controller_mock.cc', 156 'sync_driver/data_type_controller_mock.cc',
158 'sync_driver/data_type_controller_mock.h', 157 'sync_driver/data_type_controller_mock.h',
159 'sync_driver/data_type_error_handler_mock.cc', 158 'sync_driver/data_type_error_handler_mock.cc',
160 'sync_driver/data_type_error_handler_mock.h', 159 'sync_driver/data_type_error_handler_mock.h',
161 'sync_driver/data_type_manager_mock.cc', 160 'sync_driver/data_type_manager_mock.cc',
162 'sync_driver/data_type_manager_mock.h', 161 'sync_driver/data_type_manager_mock.h',
163 'sync_driver/fake_data_type_controller.cc', 162 'sync_driver/fake_data_type_controller.cc',
164 'sync_driver/fake_data_type_controller.h', 163 'sync_driver/fake_data_type_controller.h',
165 'sync_driver/fake_generic_change_processor.cc', 164 'sync_driver/fake_generic_change_processor.cc',
166 'sync_driver/fake_generic_change_processor.h', 165 'sync_driver/fake_generic_change_processor.h',
166 'sync_driver/fake_sync_client.cc',
167 'sync_driver/fake_sync_client.h',
167 'sync_driver/fake_sync_service.cc', 168 'sync_driver/fake_sync_service.cc',
168 'sync_driver/fake_sync_service.h', 169 'sync_driver/fake_sync_service.h',
169 'sync_driver/frontend_data_type_controller_mock.cc', 170 'sync_driver/frontend_data_type_controller_mock.cc',
170 'sync_driver/frontend_data_type_controller_mock.h', 171 'sync_driver/frontend_data_type_controller_mock.h',
171 'sync_driver/local_device_info_provider_mock.cc', 172 'sync_driver/local_device_info_provider_mock.cc',
172 'sync_driver/local_device_info_provider_mock.h', 173 'sync_driver/local_device_info_provider_mock.h',
173 'sync_driver/model_associator_mock.cc', 174 'sync_driver/model_associator_mock.cc',
174 'sync_driver/model_associator_mock.h', 175 'sync_driver/model_associator_mock.h',
175 'sync_driver/non_ui_data_type_controller_mock.cc', 176 'sync_driver/non_ui_data_type_controller_mock.cc',
176 'sync_driver/non_ui_data_type_controller_mock.h', 177 'sync_driver/non_ui_data_type_controller_mock.h',
177 ], 178 ],
178 }, 179 },
179 ], 180 ],
180 } 181 }
OLDNEW
« no previous file with comments | « components/autofill/core/browser/options_util_unittest.cc ('k') | components/sync_driver/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698