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

Side by Side Diff: components/sync_driver.gypi

Issue 1265213003: Componentize profile_sync_auth_provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../sync/sync.gyp:sync', 13 '../sync/sync.gyp:sync',
14 'os_crypt', 14 'os_crypt',
droger 2015/08/04 07:58:43 Please add 'signin_core_browser',
Abhishek 2015/08/04 08:46:52 Done.
15 ], 15 ],
16 'include_dirs': [ 16 'include_dirs': [
17 '..', 17 '..',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 # Note: file list duplicated in GN build. 20 # Note: file list duplicated in GN build.
21 'sync_driver/backend_data_type_configurer.cc', 21 'sync_driver/backend_data_type_configurer.cc',
22 'sync_driver/backend_data_type_configurer.h', 22 'sync_driver/backend_data_type_configurer.h',
23 'sync_driver/change_processor.cc', 23 'sync_driver/change_processor.cc',
24 'sync_driver/change_processor.h', 24 'sync_driver/change_processor.h',
(...skipping 29 matching lines...) Expand all
54 'sync_driver/non_blocking_data_type_controller.cc', 54 'sync_driver/non_blocking_data_type_controller.cc',
55 'sync_driver/non_blocking_data_type_controller.h', 55 'sync_driver/non_blocking_data_type_controller.h',
56 'sync_driver/non_blocking_data_type_manager.cc', 56 'sync_driver/non_blocking_data_type_manager.cc',
57 'sync_driver/non_blocking_data_type_manager.h', 57 'sync_driver/non_blocking_data_type_manager.h',
58 'sync_driver/non_ui_data_type_controller.cc', 58 'sync_driver/non_ui_data_type_controller.cc',
59 'sync_driver/non_ui_data_type_controller.h', 59 'sync_driver/non_ui_data_type_controller.h',
60 'sync_driver/open_tabs_ui_delegate.cc', 60 'sync_driver/open_tabs_ui_delegate.cc',
61 'sync_driver/open_tabs_ui_delegate.h', 61 'sync_driver/open_tabs_ui_delegate.h',
62 'sync_driver/pref_names.cc', 62 'sync_driver/pref_names.cc',
63 'sync_driver/pref_names.h', 63 'sync_driver/pref_names.h',
64 'sync_driver/profile_sync_auth_provider.cc',
65 'sync_driver/profile_sync_auth_provider.h',
64 'sync_driver/proxy_data_type_controller.cc', 66 'sync_driver/proxy_data_type_controller.cc',
65 'sync_driver/proxy_data_type_controller.h', 67 'sync_driver/proxy_data_type_controller.h',
66 'sync_driver/shared_change_processor.cc', 68 'sync_driver/shared_change_processor.cc',
67 'sync_driver/shared_change_processor.h', 69 'sync_driver/shared_change_processor.h',
68 'sync_driver/shared_change_processor_ref.cc', 70 'sync_driver/shared_change_processor_ref.cc',
69 'sync_driver/shared_change_processor_ref.h', 71 'sync_driver/shared_change_processor_ref.h',
70 'sync_driver/sync_api_component_factory.h', 72 'sync_driver/sync_api_component_factory.h',
71 'sync_driver/sync_frontend.cc', 73 'sync_driver/sync_frontend.cc',
72 'sync_driver/sync_frontend.h', 74 'sync_driver/sync_frontend.h',
73 'sync_driver/sync_prefs.cc', 75 'sync_driver/sync_prefs.cc',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'sync_driver/local_device_info_provider_mock.cc', 127 'sync_driver/local_device_info_provider_mock.cc',
126 'sync_driver/local_device_info_provider_mock.h', 128 'sync_driver/local_device_info_provider_mock.h',
127 'sync_driver/model_associator_mock.cc', 129 'sync_driver/model_associator_mock.cc',
128 'sync_driver/model_associator_mock.h', 130 'sync_driver/model_associator_mock.h',
129 'sync_driver/non_ui_data_type_controller_mock.cc', 131 'sync_driver/non_ui_data_type_controller_mock.cc',
130 'sync_driver/non_ui_data_type_controller_mock.h', 132 'sync_driver/non_ui_data_type_controller_mock.h',
131 ], 133 ],
132 }, 134 },
133 ], 135 ],
134 } 136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698