| 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 static_library("sync_driver") { | 5 static_library("sync_driver") { |
| 6 sources = [ | 6 sources = [ |
| 7 "backend_data_type_configurer.cc", | 7 "backend_data_type_configurer.cc", |
| 8 "backend_data_type_configurer.h", | 8 "backend_data_type_configurer.h", |
| 9 "change_processor.cc", | 9 "change_processor.cc", |
| 10 "change_processor.h", | 10 "change_processor.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "non_blocking_data_type_controller.cc", | 40 "non_blocking_data_type_controller.cc", |
| 41 "non_blocking_data_type_controller.h", | 41 "non_blocking_data_type_controller.h", |
| 42 "non_blocking_data_type_manager.cc", | 42 "non_blocking_data_type_manager.cc", |
| 43 "non_blocking_data_type_manager.h", | 43 "non_blocking_data_type_manager.h", |
| 44 "non_ui_data_type_controller.cc", | 44 "non_ui_data_type_controller.cc", |
| 45 "non_ui_data_type_controller.h", | 45 "non_ui_data_type_controller.h", |
| 46 "open_tabs_ui_delegate.cc", | 46 "open_tabs_ui_delegate.cc", |
| 47 "open_tabs_ui_delegate.h", | 47 "open_tabs_ui_delegate.h", |
| 48 "pref_names.cc", | 48 "pref_names.cc", |
| 49 "pref_names.h", | 49 "pref_names.h", |
| 50 "profile_sync_auth_provider.cc", |
| 51 "profile_sync_auth_provider.h", |
| 50 "proxy_data_type_controller.cc", | 52 "proxy_data_type_controller.cc", |
| 51 "proxy_data_type_controller.h", | 53 "proxy_data_type_controller.h", |
| 52 "shared_change_processor.cc", | 54 "shared_change_processor.cc", |
| 53 "shared_change_processor.h", | 55 "shared_change_processor.h", |
| 54 "shared_change_processor_ref.cc", | 56 "shared_change_processor_ref.cc", |
| 55 "shared_change_processor_ref.h", | 57 "shared_change_processor_ref.h", |
| 56 "sync_api_component_factory.h", | 58 "sync_api_component_factory.h", |
| 57 "sync_frontend.cc", | 59 "sync_frontend.cc", |
| 58 "sync_frontend.h", | 60 "sync_frontend.h", |
| 59 "sync_prefs.cc", | 61 "sync_prefs.cc", |
| 60 "sync_prefs.h", | 62 "sync_prefs.h", |
| 61 "sync_service.h", | 63 "sync_service.h", |
| 62 "sync_service_observer.cc", | 64 "sync_service_observer.cc", |
| 63 "sync_service_observer.h", | 65 "sync_service_observer.h", |
| 64 "system_encryptor.cc", | 66 "system_encryptor.cc", |
| 65 "system_encryptor.h", | 67 "system_encryptor.h", |
| 66 "ui_data_type_controller.cc", | 68 "ui_data_type_controller.cc", |
| 67 "ui_data_type_controller.h", | 69 "ui_data_type_controller.h", |
| 68 "user_selectable_sync_type.h", | 70 "user_selectable_sync_type.h", |
| 69 ] | 71 ] |
| 70 | 72 |
| 71 deps = [ | 73 deps = [ |
| 72 "//base", | 74 "//base", |
| 73 "//components/os_crypt", | 75 "//components/os_crypt", |
| 76 "//components/signin/core/browser", |
| 74 "//sync", | 77 "//sync", |
| 75 ] | 78 ] |
| 76 } | 79 } |
| 77 | 80 |
| 78 static_library("test_support") { | 81 static_library("test_support") { |
| 79 testonly = true | 82 testonly = true |
| 80 sources = [ | 83 sources = [ |
| 81 "change_processor_mock.cc", | 84 "change_processor_mock.cc", |
| 82 "change_processor_mock.h", | 85 "change_processor_mock.h", |
| 83 "data_type_controller_mock.cc", | 86 "data_type_controller_mock.cc", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 101 deps = [ | 104 deps = [ |
| 102 ":sync_driver", | 105 ":sync_driver", |
| 103 "//base", | 106 "//base", |
| 104 "//components/sessions", | 107 "//components/sessions", |
| 105 "//sync", | 108 "//sync", |
| 106 "//sync:test_support_sync_internal_api", | 109 "//sync:test_support_sync_internal_api", |
| 107 "//testing/gmock", | 110 "//testing/gmock", |
| 108 "//testing/gtest", | 111 "//testing/gtest", |
| 109 ] | 112 ] |
| 110 } | 113 } |
| OLD | NEW |