Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: components/sync_driver/BUILD.gn

Issue 1308313003: Componentize chrome/common/sync_util (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "protocol_event_observer.h", 64 "protocol_event_observer.h",
65 "proxy_data_type_controller.cc", 65 "proxy_data_type_controller.cc",
66 "proxy_data_type_controller.h", 66 "proxy_data_type_controller.h",
67 "shared_change_processor.cc", 67 "shared_change_processor.cc",
68 "shared_change_processor.h", 68 "shared_change_processor.h",
69 "shared_change_processor_ref.cc", 69 "shared_change_processor_ref.cc",
70 "shared_change_processor_ref.h", 70 "shared_change_processor_ref.h",
71 "sync_api_component_factory.h", 71 "sync_api_component_factory.h",
72 "sync_client.cc", 72 "sync_client.cc",
73 "sync_client.h", 73 "sync_client.h",
74 "sync_driver_switches.cc",
75 "sync_driver_switches.h",
74 "sync_error_controller.cc", 76 "sync_error_controller.cc",
75 "sync_error_controller.h", 77 "sync_error_controller.h",
76 "sync_frontend.cc", 78 "sync_frontend.cc",
77 "sync_frontend.h", 79 "sync_frontend.h",
78 "sync_prefs.cc", 80 "sync_prefs.cc",
79 "sync_prefs.h", 81 "sync_prefs.h",
80 "sync_service.h", 82 "sync_service.h",
81 "sync_service_observer.cc", 83 "sync_service_observer.cc",
82 "sync_service_observer.h", 84 "sync_service_observer.h",
83 "sync_service_utils.cc", 85 "sync_service_utils.cc",
84 "sync_service_utils.h", 86 "sync_service_utils.h",
85 "sync_stopped_reporter.cc", 87 "sync_stopped_reporter.cc",
86 "sync_stopped_reporter.h", 88 "sync_stopped_reporter.h",
89 "sync_util.cc",
90 "sync_util.h",
87 "system_encryptor.cc", 91 "system_encryptor.cc",
88 "system_encryptor.h", 92 "system_encryptor.h",
89 "tab_node_pool.cc", 93 "tab_node_pool.cc",
90 "tab_node_pool.h", 94 "tab_node_pool.h",
91 "ui_data_type_controller.cc", 95 "ui_data_type_controller.cc",
92 "ui_data_type_controller.h", 96 "ui_data_type_controller.h",
93 "user_selectable_sync_type.h", 97 "user_selectable_sync_type.h",
94 ] 98 ]
95 99
96 deps = [ 100 deps = [
97 "//base", 101 "//base",
98 "//components/history/core/browser", 102 "//components/history/core/browser",
99 "//components/invalidation/public", 103 "//components/invalidation/public",
100 "//components/os_crypt", 104 "//components/os_crypt",
101 "//components/sessions", 105 "//components/sessions",
102 "//components/signin/core/browser", 106 "//components/signin/core/browser",
107 "//components/version_info",
103 "//net", 108 "//net",
104 "//sync", 109 "//sync",
105 "//third_party/cacheinvalidation", 110 "//third_party/cacheinvalidation",
106 ] 111 ]
107 112
108 if (enable_configuration_policy) { 113 if (enable_configuration_policy) {
109 sources += [ 114 sources += [
110 "sync_policy_handler.cc", 115 "sync_policy_handler.cc",
111 "sync_policy_handler.h", 116 "sync_policy_handler.h",
112 ] 117 ]
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 "device_info_data_type_controller_unittest.cc", 166 "device_info_data_type_controller_unittest.cc",
162 "device_info_sync_service_unittest.cc", 167 "device_info_sync_service_unittest.cc",
163 "generic_change_processor_unittest.cc", 168 "generic_change_processor_unittest.cc",
164 "model_association_manager_unittest.cc", 169 "model_association_manager_unittest.cc",
165 "non_blocking_data_type_controller_unittest.cc", 170 "non_blocking_data_type_controller_unittest.cc",
166 "non_ui_data_type_controller_unittest.cc", 171 "non_ui_data_type_controller_unittest.cc",
167 "shared_change_processor_unittest.cc", 172 "shared_change_processor_unittest.cc",
168 "sync_policy_handler_unittest.cc", 173 "sync_policy_handler_unittest.cc",
169 "sync_prefs_unittest.cc", 174 "sync_prefs_unittest.cc",
170 "sync_stopped_reporter_unittest.cc", 175 "sync_stopped_reporter_unittest.cc",
176 "sync_util_unittest.cc",
171 "system_encryptor_unittest.cc", 177 "system_encryptor_unittest.cc",
172 "tab_node_pool_unittest.cc", 178 "tab_node_pool_unittest.cc",
173 "ui_data_type_controller_unittest.cc", 179 "ui_data_type_controller_unittest.cc",
174 ] 180 ]
175 deps = [ 181 deps = [
176 ":test_support", 182 ":test_support",
177 "//testing/gmock", 183 "//testing/gmock",
178 "//testing/gtest", 184 "//testing/gtest",
179 ] 185 ]
180 } 186 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698