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 "backend_data_type_configurer.cc", | 9 "backend_data_type_configurer.cc", |
10 "backend_data_type_configurer.h", | 10 "backend_data_type_configurer.h", |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 "data_type_manager_impl_unittest.cc", | 160 "data_type_manager_impl_unittest.cc", |
161 "device_info_data_type_controller_unittest.cc", | 161 "device_info_data_type_controller_unittest.cc", |
162 "device_info_sync_service_unittest.cc", | 162 "device_info_sync_service_unittest.cc", |
163 "generic_change_processor_unittest.cc", | 163 "generic_change_processor_unittest.cc", |
164 "model_association_manager_unittest.cc", | 164 "model_association_manager_unittest.cc", |
165 "non_blocking_data_type_controller_unittest.cc", | 165 "non_blocking_data_type_controller_unittest.cc", |
166 "non_ui_data_type_controller_unittest.cc", | 166 "non_ui_data_type_controller_unittest.cc", |
167 "shared_change_processor_unittest.cc", | 167 "shared_change_processor_unittest.cc", |
168 "sync_policy_handler_unittest.cc", | 168 "sync_policy_handler_unittest.cc", |
169 "sync_prefs_unittest.cc", | 169 "sync_prefs_unittest.cc", |
| 170 "sync_stopped_reporter_unittest.cc", |
170 "system_encryptor_unittest.cc", | 171 "system_encryptor_unittest.cc", |
171 "tab_node_pool_unittest.cc", | 172 "tab_node_pool_unittest.cc", |
172 "ui_data_type_controller_unittest.cc", | 173 "ui_data_type_controller_unittest.cc", |
173 ] | 174 ] |
174 deps = [ | 175 deps = [ |
175 ":test_support", | 176 ":test_support", |
176 "//testing/gmock", | 177 "//testing/gmock", |
177 "//testing/gtest", | 178 "//testing/gtest", |
178 ] | 179 ] |
179 } | 180 } |
OLD | NEW |