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

Side by Side Diff: sync/BUILD.gn

Issue 1368683003: USS SyncContextProxy / data type activation refactoring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed CR feedback Created 5 years, 2 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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("sync") { 8 component("sync") {
9 public_deps = [ 9 public_deps = [
10 ":sync_core", 10 ":sync_core",
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "engine/syncer_proto_util.h", 116 "engine/syncer_proto_util.h",
117 "engine/syncer_types.h", 117 "engine/syncer_types.h",
118 "engine/syncer_util.cc", 118 "engine/syncer_util.cc",
119 "engine/syncer_util.h", 119 "engine/syncer_util.h",
120 "engine/traffic_logger.cc", 120 "engine/traffic_logger.cc",
121 "engine/traffic_logger.h", 121 "engine/traffic_logger.h",
122 "engine/update_applicator.cc", 122 "engine/update_applicator.cc",
123 "engine/update_applicator.h", 123 "engine/update_applicator.h",
124 "engine/update_handler.cc", 124 "engine/update_handler.cc",
125 "engine/update_handler.h", 125 "engine/update_handler.h",
126 "internal_api/activation_context.cc",
126 "internal_api/attachments/attachment_downloader.cc", 127 "internal_api/attachments/attachment_downloader.cc",
127 "internal_api/attachments/attachment_downloader_impl.cc", 128 "internal_api/attachments/attachment_downloader_impl.cc",
128 "internal_api/attachments/attachment_service.cc", 129 "internal_api/attachments/attachment_service.cc",
129 "internal_api/attachments/attachment_service_impl.cc", 130 "internal_api/attachments/attachment_service_impl.cc",
130 "internal_api/attachments/attachment_service_proxy.cc", 131 "internal_api/attachments/attachment_service_proxy.cc",
131 "internal_api/attachments/attachment_service_proxy_for_test.cc", 132 "internal_api/attachments/attachment_service_proxy_for_test.cc",
132 "internal_api/attachments/attachment_store_frontend.cc", 133 "internal_api/attachments/attachment_store_frontend.cc",
133 "internal_api/attachments/attachment_uploader.cc", 134 "internal_api/attachments/attachment_uploader.cc",
134 "internal_api/attachments/attachment_uploader_impl.cc", 135 "internal_api/attachments/attachment_uploader_impl.cc",
135 "internal_api/attachments/attachment_util.cc", 136 "internal_api/attachments/attachment_util.cc",
(...skipping 23 matching lines...) Expand all
159 "internal_api/http_bridge_network_resources.cc", 160 "internal_api/http_bridge_network_resources.cc",
160 "internal_api/internal_components_factory_impl.cc", 161 "internal_api/internal_components_factory_impl.cc",
161 "internal_api/js_mutation_event_observer.cc", 162 "internal_api/js_mutation_event_observer.cc",
162 "internal_api/js_mutation_event_observer.h", 163 "internal_api/js_mutation_event_observer.h",
163 "internal_api/js_sync_encryption_handler_observer.cc", 164 "internal_api/js_sync_encryption_handler_observer.cc",
164 "internal_api/js_sync_encryption_handler_observer.h", 165 "internal_api/js_sync_encryption_handler_observer.h",
165 "internal_api/js_sync_manager_observer.cc", 166 "internal_api/js_sync_manager_observer.cc",
166 "internal_api/js_sync_manager_observer.h", 167 "internal_api/js_sync_manager_observer.h",
167 "internal_api/protocol_event_buffer.cc", 168 "internal_api/protocol_event_buffer.cc",
168 "internal_api/protocol_event_buffer.h", 169 "internal_api/protocol_event_buffer.h",
170 "internal_api/public/activation_context.h",
169 "internal_api/public/attachments/attachment_downloader.h", 171 "internal_api/public/attachments/attachment_downloader.h",
170 "internal_api/public/attachments/attachment_downloader_impl.h", 172 "internal_api/public/attachments/attachment_downloader_impl.h",
171 "internal_api/public/attachments/attachment_service.h", 173 "internal_api/public/attachments/attachment_service.h",
172 "internal_api/public/attachments/attachment_service_impl.h", 174 "internal_api/public/attachments/attachment_service_impl.h",
173 "internal_api/public/attachments/attachment_service_proxy.h", 175 "internal_api/public/attachments/attachment_service_proxy.h",
174 "internal_api/public/attachments/attachment_service_proxy_for_test.h", 176 "internal_api/public/attachments/attachment_service_proxy_for_test.h",
175 "internal_api/public/attachments/attachment_store_frontend.h", 177 "internal_api/public/attachments/attachment_store_frontend.h",
176 "internal_api/public/attachments/attachment_uploader.h", 178 "internal_api/public/attachments/attachment_uploader.h",
177 "internal_api/public/attachments/attachment_uploader_impl.h", 179 "internal_api/public/attachments/attachment_uploader_impl.h",
178 "internal_api/public/attachments/attachment_util.h", 180 "internal_api/public/attachments/attachment_util.h",
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 ":fake_server_jni", 850 ":fake_server_jni",
849 ":sync_core", 851 ":sync_core",
850 ":test_support_sync_fake_server", 852 ":test_support_sync_fake_server",
851 "//base", 853 "//base",
852 "//sync/protocol:protocol", 854 "//sync/protocol:protocol",
853 "//testing/gtest", 855 "//testing/gtest",
854 "//url:url", 856 "//url:url",
855 ] 857 ]
856 } 858 }
857 } 859 }
OLDNEW
« no previous file with comments | « components/sync_driver/ui_data_type_controller.h ('k') | sync/engine/model_type_processor_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698