| 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 15 matching lines...) Expand all Loading... |
| 26 "data_type_manager_observer.h", | 26 "data_type_manager_observer.h", |
| 27 "data_type_status_table.cc", | 27 "data_type_status_table.cc", |
| 28 "data_type_status_table.h", | 28 "data_type_status_table.h", |
| 29 "device_info.cc", | 29 "device_info.cc", |
| 30 "device_info.h", | 30 "device_info.h", |
| 31 "device_info_data_type_controller.cc", | 31 "device_info_data_type_controller.cc", |
| 32 "device_info_data_type_controller.h", | 32 "device_info_data_type_controller.h", |
| 33 "device_info_sync_service.cc", | 33 "device_info_sync_service.cc", |
| 34 "device_info_sync_service.h", | 34 "device_info_sync_service.h", |
| 35 "device_info_tracker.h", | 35 "device_info_tracker.h", |
| 36 "directory_data_type_controller.cc", |
| 37 "directory_data_type_controller.h", |
| 36 "favicon_cache.cc", | 38 "favicon_cache.cc", |
| 37 "favicon_cache.h", | 39 "favicon_cache.h", |
| 38 "frontend_data_type_controller.cc", | 40 "frontend_data_type_controller.cc", |
| 39 "frontend_data_type_controller.h", | 41 "frontend_data_type_controller.h", |
| 40 "generic_change_processor.cc", | 42 "generic_change_processor.cc", |
| 41 "generic_change_processor.h", | 43 "generic_change_processor.h", |
| 42 "generic_change_processor_factory.cc", | 44 "generic_change_processor_factory.cc", |
| 43 "generic_change_processor_factory.h", | 45 "generic_change_processor_factory.h", |
| 44 "glue/synced_session.cc", | 46 "glue/synced_session.cc", |
| 45 "glue/synced_session.h", | 47 "glue/synced_session.h", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 "system_encryptor_unittest.cc", | 191 "system_encryptor_unittest.cc", |
| 190 "tab_node_pool_unittest.cc", | 192 "tab_node_pool_unittest.cc", |
| 191 "ui_data_type_controller_unittest.cc", | 193 "ui_data_type_controller_unittest.cc", |
| 192 ] | 194 ] |
| 193 deps = [ | 195 deps = [ |
| 194 ":test_support", | 196 ":test_support", |
| 195 "//testing/gmock", | 197 "//testing/gmock", |
| 196 "//testing/gtest", | 198 "//testing/gtest", |
| 197 ] | 199 ] |
| 198 } | 200 } |
| OLD | NEW |