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

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: Rebased 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
« no previous file with comments | « components/sync_driver.gypi ('k') | components/sync_driver/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "protocol_event_observer.h", 68 "protocol_event_observer.h",
69 "proxy_data_type_controller.cc", 69 "proxy_data_type_controller.cc",
70 "proxy_data_type_controller.h", 70 "proxy_data_type_controller.h",
71 "shared_change_processor.cc", 71 "shared_change_processor.cc",
72 "shared_change_processor.h", 72 "shared_change_processor.h",
73 "shared_change_processor_ref.cc", 73 "shared_change_processor_ref.cc",
74 "shared_change_processor_ref.h", 74 "shared_change_processor_ref.h",
75 "sync_api_component_factory.h", 75 "sync_api_component_factory.h",
76 "sync_client.cc", 76 "sync_client.cc",
77 "sync_client.h", 77 "sync_client.h",
78 "sync_driver_switches.cc",
79 "sync_driver_switches.h",
78 "sync_error_controller.cc", 80 "sync_error_controller.cc",
79 "sync_error_controller.h", 81 "sync_error_controller.h",
80 "sync_frontend.cc", 82 "sync_frontend.cc",
81 "sync_frontend.h", 83 "sync_frontend.h",
82 "sync_prefs.cc", 84 "sync_prefs.cc",
83 "sync_prefs.h", 85 "sync_prefs.h",
84 "sync_service.h", 86 "sync_service.h",
85 "sync_service_observer.cc", 87 "sync_service_observer.cc",
86 "sync_service_observer.h", 88 "sync_service_observer.h",
87 "sync_service_utils.cc", 89 "sync_service_utils.cc",
88 "sync_service_utils.h", 90 "sync_service_utils.h",
89 "sync_stopped_reporter.cc", 91 "sync_stopped_reporter.cc",
90 "sync_stopped_reporter.h", 92 "sync_stopped_reporter.h",
93 "sync_util.cc",
94 "sync_util.h",
91 "system_encryptor.cc", 95 "system_encryptor.cc",
92 "system_encryptor.h", 96 "system_encryptor.h",
93 "tab_node_pool.cc", 97 "tab_node_pool.cc",
94 "tab_node_pool.h", 98 "tab_node_pool.h",
95 "ui_data_type_controller.cc", 99 "ui_data_type_controller.cc",
96 "ui_data_type_controller.h", 100 "ui_data_type_controller.h",
97 "user_selectable_sync_type.h", 101 "user_selectable_sync_type.h",
98 ] 102 ]
99 103
100 deps = [ 104 deps = [
101 "//base", 105 "//base",
102 "//components/favicon/core", 106 "//components/favicon/core",
103 "//components/history/core/browser", 107 "//components/history/core/browser",
104 "//components/invalidation/public", 108 "//components/invalidation/public",
105 "//components/os_crypt", 109 "//components/os_crypt",
106 "//components/sessions", 110 "//components/sessions",
107 "//components/signin/core/browser", 111 "//components/signin/core/browser",
112 "//components/version_info",
108 "//net", 113 "//net",
109 "//sync", 114 "//sync",
110 "//third_party/cacheinvalidation", 115 "//third_party/cacheinvalidation",
111 "//ui/gfx", 116 "//ui/gfx",
112 ] 117 ]
113 118
114 if (enable_configuration_policy) { 119 if (enable_configuration_policy) {
115 sources += [ 120 sources += [
116 "sync_policy_handler.cc", 121 "sync_policy_handler.cc",
117 "sync_policy_handler.h", 122 "sync_policy_handler.h",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 "device_info_sync_service_unittest.cc", 179 "device_info_sync_service_unittest.cc",
175 "favicon_cache_unittest.cc", 180 "favicon_cache_unittest.cc",
176 "generic_change_processor_unittest.cc", 181 "generic_change_processor_unittest.cc",
177 "model_association_manager_unittest.cc", 182 "model_association_manager_unittest.cc",
178 "non_blocking_data_type_controller_unittest.cc", 183 "non_blocking_data_type_controller_unittest.cc",
179 "non_ui_data_type_controller_unittest.cc", 184 "non_ui_data_type_controller_unittest.cc",
180 "shared_change_processor_unittest.cc", 185 "shared_change_processor_unittest.cc",
181 "sync_policy_handler_unittest.cc", 186 "sync_policy_handler_unittest.cc",
182 "sync_prefs_unittest.cc", 187 "sync_prefs_unittest.cc",
183 "sync_stopped_reporter_unittest.cc", 188 "sync_stopped_reporter_unittest.cc",
189 "sync_util_unittest.cc",
184 "system_encryptor_unittest.cc", 190 "system_encryptor_unittest.cc",
185 "tab_node_pool_unittest.cc", 191 "tab_node_pool_unittest.cc",
186 "ui_data_type_controller_unittest.cc", 192 "ui_data_type_controller_unittest.cc",
187 ] 193 ]
188 deps = [ 194 deps = [
189 ":test_support", 195 ":test_support",
190 "//testing/gmock", 196 "//testing/gmock",
191 "//testing/gtest", 197 "//testing/gtest",
192 ] 198 ]
193 } 199 }
OLDNEW
« no previous file with comments | « components/sync_driver.gypi ('k') | components/sync_driver/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698