| OLD | NEW |
| 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', |
| 15 'signin_core_browser', |
| 15 ], | 16 ], |
| 16 'include_dirs': [ | 17 'include_dirs': [ |
| 17 '..', | 18 '..', |
| 18 ], | 19 ], |
| 19 'sources': [ | 20 'sources': [ |
| 20 # Note: file list duplicated in GN build. | 21 # Note: file list duplicated in GN build. |
| 21 'sync_driver/backend_data_type_configurer.cc', | 22 'sync_driver/backend_data_type_configurer.cc', |
| 22 'sync_driver/backend_data_type_configurer.h', | 23 'sync_driver/backend_data_type_configurer.h', |
| 23 'sync_driver/change_processor.cc', | 24 'sync_driver/change_processor.cc', |
| 24 'sync_driver/change_processor.h', | 25 'sync_driver/change_processor.h', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 54 'sync_driver/non_blocking_data_type_controller.cc', | 55 'sync_driver/non_blocking_data_type_controller.cc', |
| 55 'sync_driver/non_blocking_data_type_controller.h', | 56 'sync_driver/non_blocking_data_type_controller.h', |
| 56 'sync_driver/non_blocking_data_type_manager.cc', | 57 'sync_driver/non_blocking_data_type_manager.cc', |
| 57 'sync_driver/non_blocking_data_type_manager.h', | 58 'sync_driver/non_blocking_data_type_manager.h', |
| 58 'sync_driver/non_ui_data_type_controller.cc', | 59 'sync_driver/non_ui_data_type_controller.cc', |
| 59 'sync_driver/non_ui_data_type_controller.h', | 60 'sync_driver/non_ui_data_type_controller.h', |
| 60 'sync_driver/open_tabs_ui_delegate.cc', | 61 'sync_driver/open_tabs_ui_delegate.cc', |
| 61 'sync_driver/open_tabs_ui_delegate.h', | 62 'sync_driver/open_tabs_ui_delegate.h', |
| 62 'sync_driver/pref_names.cc', | 63 'sync_driver/pref_names.cc', |
| 63 'sync_driver/pref_names.h', | 64 'sync_driver/pref_names.h', |
| 65 'sync_driver/profile_sync_auth_provider.cc', |
| 66 'sync_driver/profile_sync_auth_provider.h', |
| 64 'sync_driver/proxy_data_type_controller.cc', | 67 'sync_driver/proxy_data_type_controller.cc', |
| 65 'sync_driver/proxy_data_type_controller.h', | 68 'sync_driver/proxy_data_type_controller.h', |
| 66 'sync_driver/shared_change_processor.cc', | 69 'sync_driver/shared_change_processor.cc', |
| 67 'sync_driver/shared_change_processor.h', | 70 'sync_driver/shared_change_processor.h', |
| 68 'sync_driver/shared_change_processor_ref.cc', | 71 'sync_driver/shared_change_processor_ref.cc', |
| 69 'sync_driver/shared_change_processor_ref.h', | 72 'sync_driver/shared_change_processor_ref.h', |
| 70 'sync_driver/sync_api_component_factory.h', | 73 'sync_driver/sync_api_component_factory.h', |
| 71 'sync_driver/sync_frontend.cc', | 74 'sync_driver/sync_frontend.cc', |
| 72 'sync_driver/sync_frontend.h', | 75 'sync_driver/sync_frontend.h', |
| 73 'sync_driver/sync_prefs.cc', | 76 'sync_driver/sync_prefs.cc', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 'sync_driver/local_device_info_provider_mock.cc', | 128 'sync_driver/local_device_info_provider_mock.cc', |
| 126 'sync_driver/local_device_info_provider_mock.h', | 129 'sync_driver/local_device_info_provider_mock.h', |
| 127 'sync_driver/model_associator_mock.cc', | 130 'sync_driver/model_associator_mock.cc', |
| 128 'sync_driver/model_associator_mock.h', | 131 'sync_driver/model_associator_mock.h', |
| 129 'sync_driver/non_ui_data_type_controller_mock.cc', | 132 'sync_driver/non_ui_data_type_controller_mock.cc', |
| 130 'sync_driver/non_ui_data_type_controller_mock.h', | 133 'sync_driver/non_ui_data_type_controller_mock.h', |
| 131 ], | 134 ], |
| 132 }, | 135 }, |
| 133 ], | 136 ], |
| 134 } | 137 } |
| OLD | NEW |