| 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 "backend_migrator.cc", | 9 "backend_migrator.cc", |
| 10 "backend_migrator.h", | 10 "backend_migrator.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "non_blocking_data_type_manager.cc", | 44 "non_blocking_data_type_manager.cc", |
| 45 "non_blocking_data_type_manager.h", | 45 "non_blocking_data_type_manager.h", |
| 46 "non_ui_data_type_controller.cc", | 46 "non_ui_data_type_controller.cc", |
| 47 "non_ui_data_type_controller.h", | 47 "non_ui_data_type_controller.h", |
| 48 "open_tabs_ui_delegate.cc", | 48 "open_tabs_ui_delegate.cc", |
| 49 "open_tabs_ui_delegate.h", | 49 "open_tabs_ui_delegate.h", |
| 50 "pref_names.cc", | 50 "pref_names.cc", |
| 51 "pref_names.h", | 51 "pref_names.h", |
| 52 "profile_sync_auth_provider.cc", | 52 "profile_sync_auth_provider.cc", |
| 53 "profile_sync_auth_provider.h", | 53 "profile_sync_auth_provider.h", |
| 54 "protocol_event_observer.cc", |
| 55 "protocol_event_observer.h", |
| 54 "proxy_data_type_controller.cc", | 56 "proxy_data_type_controller.cc", |
| 55 "proxy_data_type_controller.h", | 57 "proxy_data_type_controller.h", |
| 56 "shared_change_processor.cc", | 58 "shared_change_processor.cc", |
| 57 "shared_change_processor.h", | 59 "shared_change_processor.h", |
| 58 "shared_change_processor_ref.cc", | 60 "shared_change_processor_ref.cc", |
| 59 "shared_change_processor_ref.h", | 61 "shared_change_processor_ref.h", |
| 60 "sync_api_component_factory.h", | 62 "sync_api_component_factory.h", |
| 61 "sync_frontend.cc", | 63 "sync_frontend.cc", |
| 62 "sync_frontend.h", | 64 "sync_frontend.h", |
| 63 "sync_prefs.cc", | 65 "sync_prefs.cc", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 deps = [ | 108 deps = [ |
| 107 ":sync_driver", | 109 ":sync_driver", |
| 108 "//base", | 110 "//base", |
| 109 "//components/sessions", | 111 "//components/sessions", |
| 110 "//sync", | 112 "//sync", |
| 111 "//sync:test_support_sync_internal_api", | 113 "//sync:test_support_sync_internal_api", |
| 112 "//testing/gmock", | 114 "//testing/gmock", |
| 113 "//testing/gtest", | 115 "//testing/gtest", |
| 114 ] | 116 ] |
| 115 } | 117 } |
| OLD | NEW |