| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 source_set("sync_driver") { | 8 source_set("sync_driver") { |
| 9 sources = [ | 9 sources = [ |
| 10 "about_sync_util.cc", | 10 "about_sync_util.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "data_type_manager_impl.h", | 25 "data_type_manager_impl.h", |
| 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_count_metrics_provider.cc", | 29 "device_count_metrics_provider.cc", |
| 30 "device_count_metrics_provider.h", | 30 "device_count_metrics_provider.h", |
| 31 "device_info.cc", | 31 "device_info.cc", |
| 32 "device_info.h", | 32 "device_info.h", |
| 33 "device_info_data_type_controller.cc", | 33 "device_info_data_type_controller.cc", |
| 34 "device_info_data_type_controller.h", | 34 "device_info_data_type_controller.h", |
| 35 "device_info_model_type_controller.cc", | |
| 36 "device_info_model_type_controller.h", | |
| 37 "device_info_service.cc", | 35 "device_info_service.cc", |
| 38 "device_info_service.h", | 36 "device_info_service.h", |
| 39 "device_info_sync_service.cc", | 37 "device_info_sync_service.cc", |
| 40 "device_info_sync_service.h", | 38 "device_info_sync_service.h", |
| 41 "device_info_tracker.h", | 39 "device_info_tracker.h", |
| 42 "device_info_util.cc", | 40 "device_info_util.cc", |
| 43 "device_info_util.h", | 41 "device_info_util.h", |
| 44 "directory_data_type_controller.cc", | 42 "directory_data_type_controller.cc", |
| 45 "directory_data_type_controller.h", | 43 "directory_data_type_controller.h", |
| 46 "frontend_data_type_controller.cc", | 44 "frontend_data_type_controller.cc", |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 ] | 254 ] |
| 257 | 255 |
| 258 if (enable_configuration_policy) { | 256 if (enable_configuration_policy) { |
| 259 sources += [ "sync_policy_handler_unittest.cc" ] | 257 sources += [ "sync_policy_handler_unittest.cc" ] |
| 260 deps += [ | 258 deps += [ |
| 261 "//components/policy", | 259 "//components/policy", |
| 262 "//components/policy:policy_component", | 260 "//components/policy:policy_component", |
| 263 ] | 261 ] |
| 264 } | 262 } |
| 265 } | 263 } |
| OLD | NEW |