| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "generic_change_processor.cc", | 42 "generic_change_processor.cc", |
| 43 "generic_change_processor.h", | 43 "generic_change_processor.h", |
| 44 "generic_change_processor_factory.cc", | 44 "generic_change_processor_factory.cc", |
| 45 "generic_change_processor_factory.h", | 45 "generic_change_processor_factory.h", |
| 46 "glue/synced_session.cc", | 46 "glue/synced_session.cc", |
| 47 "glue/synced_session.h", | 47 "glue/synced_session.h", |
| 48 "glue/typed_url_model_associator.cc", | 48 "glue/typed_url_model_associator.cc", |
| 49 "glue/typed_url_model_associator.h", | 49 "glue/typed_url_model_associator.h", |
| 50 "invalidation_adapter.cc", | 50 "invalidation_adapter.cc", |
| 51 "invalidation_adapter.h", | 51 "invalidation_adapter.h", |
| 52 "invalidation_helper.cc", | |
| 53 "invalidation_helper.h", | |
| 54 "local_device_info_provider.h", | 52 "local_device_info_provider.h", |
| 55 "model_association_manager.cc", | 53 "model_association_manager.cc", |
| 56 "model_association_manager.h", | 54 "model_association_manager.h", |
| 57 "model_associator.h", | 55 "model_associator.h", |
| 58 "non_blocking_data_type_controller.cc", | 56 "non_blocking_data_type_controller.cc", |
| 59 "non_blocking_data_type_controller.h", | 57 "non_blocking_data_type_controller.h", |
| 60 "non_blocking_data_type_manager.cc", | 58 "non_blocking_data_type_manager.cc", |
| 61 "non_blocking_data_type_manager.h", | 59 "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", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "//base", | 110 "//base", |
| 113 "//components/favicon/core", | 111 "//components/favicon/core", |
| 114 "//components/history/core/browser", | 112 "//components/history/core/browser", |
| 115 "//components/invalidation/public", | 113 "//components/invalidation/public", |
| 116 "//components/os_crypt", | 114 "//components/os_crypt", |
| 117 "//components/sessions", | 115 "//components/sessions", |
| 118 "//components/signin/core/browser", | 116 "//components/signin/core/browser", |
| 119 "//components/version_info", | 117 "//components/version_info", |
| 120 "//net", | 118 "//net", |
| 121 "//sync", | 119 "//sync", |
| 122 "//third_party/cacheinvalidation", | |
| 123 "//ui/gfx", | 120 "//ui/gfx", |
| 124 ] | 121 ] |
| 125 | 122 |
| 126 if (enable_configuration_policy) { | 123 if (enable_configuration_policy) { |
| 127 sources += [ | 124 sources += [ |
| 128 "sync_policy_handler.cc", | 125 "sync_policy_handler.cc", |
| 129 "sync_policy_handler.h", | 126 "sync_policy_handler.h", |
| 130 ] | 127 ] |
| 131 deps += [ | 128 deps += [ |
| 132 "//components/policy", | 129 "//components/policy", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "system_encryptor_unittest.cc", | 195 "system_encryptor_unittest.cc", |
| 199 "tab_node_pool_unittest.cc", | 196 "tab_node_pool_unittest.cc", |
| 200 "ui_data_type_controller_unittest.cc", | 197 "ui_data_type_controller_unittest.cc", |
| 201 ] | 198 ] |
| 202 deps = [ | 199 deps = [ |
| 203 ":test_support", | 200 ":test_support", |
| 204 "//testing/gmock", | 201 "//testing/gmock", |
| 205 "//testing/gtest", | 202 "//testing/gtest", |
| 206 ] | 203 ] |
| 207 } | 204 } |
| OLD | NEW |