| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "glue/synced_window_delegate.h", | 56 "glue/synced_window_delegate.h", |
| 57 "glue/typed_url_model_associator.cc", | 57 "glue/typed_url_model_associator.cc", |
| 58 "glue/typed_url_model_associator.h", | 58 "glue/typed_url_model_associator.h", |
| 59 "glue/ui_model_worker.cc", | 59 "glue/ui_model_worker.cc", |
| 60 "glue/ui_model_worker.h", | 60 "glue/ui_model_worker.h", |
| 61 "invalidation_adapter.cc", | 61 "invalidation_adapter.cc", |
| 62 "invalidation_adapter.h", | 62 "invalidation_adapter.h", |
| 63 "invalidation_helper.cc", | 63 "invalidation_helper.cc", |
| 64 "invalidation_helper.h", | 64 "invalidation_helper.h", |
| 65 "local_device_info_provider.h", | 65 "local_device_info_provider.h", |
| 66 "local_device_info_provider_impl.cc", |
| 67 "local_device_info_provider_impl.h", |
| 66 "model_association_manager.cc", | 68 "model_association_manager.cc", |
| 67 "model_association_manager.h", | 69 "model_association_manager.h", |
| 68 "model_associator.h", | 70 "model_associator.h", |
| 69 "non_blocking_data_type_controller.cc", | 71 "non_blocking_data_type_controller.cc", |
| 70 "non_blocking_data_type_controller.h", | 72 "non_blocking_data_type_controller.h", |
| 71 "non_ui_data_type_controller.cc", | 73 "non_ui_data_type_controller.cc", |
| 72 "non_ui_data_type_controller.h", | 74 "non_ui_data_type_controller.h", |
| 73 "open_tabs_ui_delegate.cc", | 75 "open_tabs_ui_delegate.cc", |
| 74 "open_tabs_ui_delegate.h", | 76 "open_tabs_ui_delegate.h", |
| 75 "pref_names.cc", | 77 "pref_names.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 source_set("unit_tests") { | 204 source_set("unit_tests") { |
| 203 testonly = true | 205 testonly = true |
| 204 sources = [ | 206 sources = [ |
| 205 "about_sync_util_unittest.cc", | 207 "about_sync_util_unittest.cc", |
| 206 "backup_rollback_controller_unittest.cc", | 208 "backup_rollback_controller_unittest.cc", |
| 207 "data_type_manager_impl_unittest.cc", | 209 "data_type_manager_impl_unittest.cc", |
| 208 "device_info_data_type_controller_unittest.cc", | 210 "device_info_data_type_controller_unittest.cc", |
| 209 "device_info_sync_service_unittest.cc", | 211 "device_info_sync_service_unittest.cc", |
| 210 "favicon_cache_unittest.cc", | 212 "favicon_cache_unittest.cc", |
| 211 "generic_change_processor_unittest.cc", | 213 "generic_change_processor_unittest.cc", |
| 214 "local_device_info_provider_unittest.cc", |
| 212 "model_association_manager_unittest.cc", | 215 "model_association_manager_unittest.cc", |
| 213 "non_blocking_data_type_controller_unittest.cc", | 216 "non_blocking_data_type_controller_unittest.cc", |
| 214 "non_ui_data_type_controller_unittest.cc", | 217 "non_ui_data_type_controller_unittest.cc", |
| 215 "revisit/current_tab_matcher_unittest.cc", | 218 "revisit/current_tab_matcher_unittest.cc", |
| 216 "revisit/offset_tab_matcher_unittest.cc", | 219 "revisit/offset_tab_matcher_unittest.cc", |
| 217 "revisit/sessions_page_revisit_observer_unittest.cc", | 220 "revisit/sessions_page_revisit_observer_unittest.cc", |
| 218 "shared_change_processor_unittest.cc", | 221 "shared_change_processor_unittest.cc", |
| 219 "sync_prefs_unittest.cc", | 222 "sync_prefs_unittest.cc", |
| 220 "sync_stopped_reporter_unittest.cc", | 223 "sync_stopped_reporter_unittest.cc", |
| 221 "sync_util_unittest.cc", | 224 "sync_util_unittest.cc", |
| 222 "system_encryptor_unittest.cc", | 225 "system_encryptor_unittest.cc", |
| 223 "tab_node_pool_unittest.cc", | 226 "tab_node_pool_unittest.cc", |
| 224 "ui_data_type_controller_unittest.cc", | 227 "ui_data_type_controller_unittest.cc", |
| 225 ] | 228 ] |
| 226 deps = [ | 229 deps = [ |
| 227 ":test_support", | 230 ":test_support", |
| 228 "//testing/gmock", | 231 "//testing/gmock", |
| 229 "//testing/gtest", | 232 "//testing/gtest", |
| 230 ] | 233 ] |
| 231 | 234 |
| 232 if (enable_configuration_policy) { | 235 if (enable_configuration_policy) { |
| 233 sources += [ "sync_policy_handler_unittest.cc" ] | 236 sources += [ "sync_policy_handler_unittest.cc" ] |
| 234 } | 237 } |
| 235 } | 238 } |
| OLD | NEW |