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

Side by Side Diff: components/sync_driver.gypi

Issue 1717433002: [USS] Break NonBlockingDataTypeController into UI specific one and non-UI specific one (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo Created 4 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/sync_driver/BUILD.gn » ('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 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 'sync_driver/local_device_info_provider.h', 91 'sync_driver/local_device_info_provider.h',
92 'sync_driver/local_device_info_provider_impl.cc', 92 'sync_driver/local_device_info_provider_impl.cc',
93 'sync_driver/local_device_info_provider_impl.h', 93 'sync_driver/local_device_info_provider_impl.h',
94 'sync_driver/model_association_manager.cc', 94 'sync_driver/model_association_manager.cc',
95 'sync_driver/model_association_manager.h', 95 'sync_driver/model_association_manager.h',
96 'sync_driver/model_associator.h', 96 'sync_driver/model_associator.h',
97 'sync_driver/non_blocking_data_type_controller.cc', 97 'sync_driver/non_blocking_data_type_controller.cc',
98 'sync_driver/non_blocking_data_type_controller.h', 98 'sync_driver/non_blocking_data_type_controller.h',
99 'sync_driver/non_ui_data_type_controller.cc', 99 'sync_driver/non_ui_data_type_controller.cc',
100 'sync_driver/non_ui_data_type_controller.h', 100 'sync_driver/non_ui_data_type_controller.h',
101 'sync_driver/non_ui_model_type_controller.cc',
102 'sync_driver/non_ui_model_type_controller.h',
101 'sync_driver/pref_names.cc', 103 'sync_driver/pref_names.cc',
102 'sync_driver/pref_names.h', 104 'sync_driver/pref_names.h',
103 'sync_driver/profile_sync_auth_provider.cc', 105 'sync_driver/profile_sync_auth_provider.cc',
104 'sync_driver/profile_sync_auth_provider.h', 106 'sync_driver/profile_sync_auth_provider.h',
105 'sync_driver/protocol_event_observer.cc', 107 'sync_driver/protocol_event_observer.cc',
106 'sync_driver/protocol_event_observer.h', 108 'sync_driver/protocol_event_observer.h',
107 'sync_driver/proxy_data_type_controller.cc', 109 'sync_driver/proxy_data_type_controller.cc',
108 'sync_driver/proxy_data_type_controller.h', 110 'sync_driver/proxy_data_type_controller.h',
109 'sync_driver/shared_change_processor.cc', 111 'sync_driver/shared_change_processor.cc',
110 'sync_driver/shared_change_processor.h', 112 'sync_driver/shared_change_processor.h',
(...skipping 22 matching lines...) Expand all
133 'sync_driver/sync_service_utils.h', 135 'sync_driver/sync_service_utils.h',
134 'sync_driver/sync_stopped_reporter.cc', 136 'sync_driver/sync_stopped_reporter.cc',
135 'sync_driver/sync_stopped_reporter.h', 137 'sync_driver/sync_stopped_reporter.h',
136 'sync_driver/sync_type_preference_provider.h', 138 'sync_driver/sync_type_preference_provider.h',
137 'sync_driver/sync_util.cc', 139 'sync_driver/sync_util.cc',
138 'sync_driver/sync_util.h', 140 'sync_driver/sync_util.h',
139 'sync_driver/system_encryptor.cc', 141 'sync_driver/system_encryptor.cc',
140 'sync_driver/system_encryptor.h', 142 'sync_driver/system_encryptor.h',
141 'sync_driver/ui_data_type_controller.cc', 143 'sync_driver/ui_data_type_controller.cc',
142 'sync_driver/ui_data_type_controller.h', 144 'sync_driver/ui_data_type_controller.h',
145 'sync_driver/ui_model_type_controller.cc',
146 'sync_driver/ui_model_type_controller.h',
143 'sync_driver/user_selectable_sync_type.h', 147 'sync_driver/user_selectable_sync_type.h',
144 ], 148 ],
145 'conditions': [ 149 'conditions': [
146 ['configuration_policy==1', { 150 ['configuration_policy==1', {
147 'dependencies': [ 151 'dependencies': [
148 'policy', 152 'policy',
149 'policy_component', 153 'policy_component',
150 ], 154 ],
151 'sources': [ 155 'sources': [
152 'sync_driver/sync_policy_handler.cc', 156 'sync_driver/sync_policy_handler.cc',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 'sync_driver/model_associator_mock.cc', 220 'sync_driver/model_associator_mock.cc',
217 'sync_driver/model_associator_mock.h', 221 'sync_driver/model_associator_mock.h',
218 'sync_driver/non_ui_data_type_controller_mock.cc', 222 'sync_driver/non_ui_data_type_controller_mock.cc',
219 'sync_driver/non_ui_data_type_controller_mock.h', 223 'sync_driver/non_ui_data_type_controller_mock.h',
220 'sync_driver/sync_api_component_factory_mock.cc', 224 'sync_driver/sync_api_component_factory_mock.cc',
221 'sync_driver/sync_api_component_factory_mock.h', 225 'sync_driver/sync_api_component_factory_mock.h',
222 ], 226 ],
223 }, 227 },
224 ], 228 ],
225 } 229 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/sync_driver/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698