| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 source_set("sync_driver") { | 7 source_set("sync_driver") { |
| 8 sources = [ | 8 sources = [ |
| 9 "about_sync_util.cc", | 9 "about_sync_util.cc", |
| 10 "about_sync_util.h", | 10 "about_sync_util.h", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "invalidation_adapter.cc", | 50 "invalidation_adapter.cc", |
| 51 "invalidation_adapter.h", | 51 "invalidation_adapter.h", |
| 52 "invalidation_helper.cc", | 52 "invalidation_helper.cc", |
| 53 "invalidation_helper.h", | 53 "invalidation_helper.h", |
| 54 "local_device_info_provider.h", | 54 "local_device_info_provider.h", |
| 55 "model_association_manager.cc", | 55 "model_association_manager.cc", |
| 56 "model_association_manager.h", | 56 "model_association_manager.h", |
| 57 "model_associator.h", | 57 "model_associator.h", |
| 58 "non_blocking_data_type_controller.cc", | 58 "non_blocking_data_type_controller.cc", |
| 59 "non_blocking_data_type_controller.h", | 59 "non_blocking_data_type_controller.h", |
| 60 "non_blocking_data_type_manager.cc", | |
| 61 "non_blocking_data_type_manager.h", | |
| 62 "non_ui_data_type_controller.cc", | 60 "non_ui_data_type_controller.cc", |
| 63 "non_ui_data_type_controller.h", | 61 "non_ui_data_type_controller.h", |
| 64 "open_tabs_ui_delegate.cc", | 62 "open_tabs_ui_delegate.cc", |
| 65 "open_tabs_ui_delegate.h", | 63 "open_tabs_ui_delegate.h", |
| 66 "pref_names.cc", | 64 "pref_names.cc", |
| 67 "pref_names.h", | 65 "pref_names.h", |
| 68 "profile_sync_auth_provider.cc", | 66 "profile_sync_auth_provider.cc", |
| 69 "profile_sync_auth_provider.h", | 67 "profile_sync_auth_provider.h", |
| 70 "profile_sync_components_factory.h", | 68 "profile_sync_components_factory.h", |
| 71 "protocol_event_observer.cc", | 69 "protocol_event_observer.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "system_encryptor_unittest.cc", | 196 "system_encryptor_unittest.cc", |
| 199 "tab_node_pool_unittest.cc", | 197 "tab_node_pool_unittest.cc", |
| 200 "ui_data_type_controller_unittest.cc", | 198 "ui_data_type_controller_unittest.cc", |
| 201 ] | 199 ] |
| 202 deps = [ | 200 deps = [ |
| 203 ":test_support", | 201 ":test_support", |
| 204 "//testing/gmock", | 202 "//testing/gmock", |
| 205 "//testing/gtest", | 203 "//testing/gtest", |
| 206 ] | 204 ] |
| 207 } | 205 } |
| OLD | NEW |