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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "open_tabs_ui_delegate.h", | 76 "open_tabs_ui_delegate.h", |
77 "pref_names.cc", | 77 "pref_names.cc", |
78 "pref_names.h", | 78 "pref_names.h", |
79 "profile_sync_auth_provider.cc", | 79 "profile_sync_auth_provider.cc", |
80 "profile_sync_auth_provider.h", | 80 "profile_sync_auth_provider.h", |
81 "profile_sync_components_factory.h", | 81 "profile_sync_components_factory.h", |
82 "protocol_event_observer.cc", | 82 "protocol_event_observer.cc", |
83 "protocol_event_observer.h", | 83 "protocol_event_observer.h", |
84 "proxy_data_type_controller.cc", | 84 "proxy_data_type_controller.cc", |
85 "proxy_data_type_controller.h", | 85 "proxy_data_type_controller.h", |
86 "revisit/current_tab_matcher.cc", | |
87 "revisit/current_tab_matcher.h", | |
88 "revisit/offset_tab_matcher.cc", | |
89 "revisit/offset_tab_matcher.h", | |
90 "revisit/page_equality.h", | |
91 "revisit/page_visit_observer.h", | |
92 "revisit/sessions_page_revisit_observer.cc", | |
93 "revisit/sessions_page_revisit_observer.h", | |
94 "sessions/synced_window_delegates_getter.cc", | 86 "sessions/synced_window_delegates_getter.cc", |
95 "sessions/synced_window_delegates_getter.h", | 87 "sessions/synced_window_delegates_getter.h", |
96 "shared_change_processor.cc", | 88 "shared_change_processor.cc", |
97 "shared_change_processor.h", | 89 "shared_change_processor.h", |
98 "shared_change_processor_ref.cc", | 90 "shared_change_processor_ref.cc", |
99 "shared_change_processor_ref.h", | 91 "shared_change_processor_ref.h", |
100 "signin_manager_wrapper.cc", | 92 "signin_manager_wrapper.cc", |
101 "signin_manager_wrapper.h", | 93 "signin_manager_wrapper.h", |
102 "sync_api_component_factory.h", | 94 "sync_api_component_factory.h", |
103 "sync_client.cc", | 95 "sync_client.cc", |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 "about_sync_util_unittest.cc", | 199 "about_sync_util_unittest.cc", |
208 "backup_rollback_controller_unittest.cc", | 200 "backup_rollback_controller_unittest.cc", |
209 "data_type_manager_impl_unittest.cc", | 201 "data_type_manager_impl_unittest.cc", |
210 "device_info_data_type_controller_unittest.cc", | 202 "device_info_data_type_controller_unittest.cc", |
211 "device_info_sync_service_unittest.cc", | 203 "device_info_sync_service_unittest.cc", |
212 "favicon_cache_unittest.cc", | 204 "favicon_cache_unittest.cc", |
213 "generic_change_processor_unittest.cc", | 205 "generic_change_processor_unittest.cc", |
214 "model_association_manager_unittest.cc", | 206 "model_association_manager_unittest.cc", |
215 "non_blocking_data_type_controller_unittest.cc", | 207 "non_blocking_data_type_controller_unittest.cc", |
216 "non_ui_data_type_controller_unittest.cc", | 208 "non_ui_data_type_controller_unittest.cc", |
217 "revisit/current_tab_matcher_unittest.cc", | |
218 "revisit/offset_tab_matcher_unittest.cc", | |
219 "revisit/sessions_page_revisit_observer_unittest.cc", | |
220 "shared_change_processor_unittest.cc", | 209 "shared_change_processor_unittest.cc", |
221 "sync_prefs_unittest.cc", | 210 "sync_prefs_unittest.cc", |
222 "sync_stopped_reporter_unittest.cc", | 211 "sync_stopped_reporter_unittest.cc", |
223 "sync_util_unittest.cc", | 212 "sync_util_unittest.cc", |
224 "system_encryptor_unittest.cc", | 213 "system_encryptor_unittest.cc", |
225 "tab_node_pool_unittest.cc", | 214 "tab_node_pool_unittest.cc", |
226 "ui_data_type_controller_unittest.cc", | 215 "ui_data_type_controller_unittest.cc", |
227 ] | 216 ] |
228 deps = [ | 217 deps = [ |
229 ":test_support", | 218 ":test_support", |
230 "//testing/gmock", | 219 "//testing/gmock", |
231 "//testing/gtest", | 220 "//testing/gtest", |
232 ] | 221 ] |
233 | 222 |
234 if (enable_configuration_policy) { | 223 if (enable_configuration_policy) { |
235 sources += [ "sync_policy_handler_unittest.cc" ] | 224 sources += [ "sync_policy_handler_unittest.cc" ] |
236 } | 225 } |
237 } | 226 } |
OLD | NEW |