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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 "sync_prefs.cc", | 110 "sync_prefs.cc", |
111 "sync_prefs.h", | 111 "sync_prefs.h", |
112 "sync_service.cc", | 112 "sync_service.cc", |
113 "sync_service.h", | 113 "sync_service.h", |
114 "sync_service_observer.cc", | 114 "sync_service_observer.cc", |
115 "sync_service_observer.h", | 115 "sync_service_observer.h", |
116 "sync_service_utils.cc", | 116 "sync_service_utils.cc", |
117 "sync_service_utils.h", | 117 "sync_service_utils.h", |
118 "sync_stopped_reporter.cc", | 118 "sync_stopped_reporter.cc", |
119 "sync_stopped_reporter.h", | 119 "sync_stopped_reporter.h", |
| 120 "sync_type_preference_provider.h", |
120 "sync_util.cc", | 121 "sync_util.cc", |
121 "sync_util.h", | 122 "sync_util.h", |
122 "system_encryptor.cc", | 123 "system_encryptor.cc", |
123 "system_encryptor.h", | 124 "system_encryptor.h", |
124 "tab_node_pool.cc", | 125 "tab_node_pool.cc", |
125 "tab_node_pool.h", | 126 "tab_node_pool.h", |
126 "ui_data_type_controller.cc", | 127 "ui_data_type_controller.cc", |
127 "ui_data_type_controller.h", | 128 "ui_data_type_controller.h", |
128 "user_selectable_sync_type.h", | 129 "user_selectable_sync_type.h", |
129 ] | 130 ] |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 ] | 256 ] |
256 | 257 |
257 if (enable_configuration_policy) { | 258 if (enable_configuration_policy) { |
258 sources += [ "sync_policy_handler_unittest.cc" ] | 259 sources += [ "sync_policy_handler_unittest.cc" ] |
259 deps += [ | 260 deps += [ |
260 "//components/policy", | 261 "//components/policy", |
261 "//components/policy:policy_component", | 262 "//components/policy:policy_component", |
262 ] | 263 ] |
263 } | 264 } |
264 } | 265 } |
OLD | NEW |