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

Side by Side Diff: sync/sync.gyp

Issue 1325453003: [Sync] rename USS processor / worker interfaces (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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Setting these two variables allows other targets to use the 8 # Setting these two variables allows other targets to use the
9 # sync_proto_sources variable as the list of sync protocol buffer files. 9 # sync_proto_sources variable as the list of sync protocol buffer files.
10 'sync_proto_sources_dir': 'protocol', 10 'sync_proto_sources_dir': 'protocol',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'engine/clear_server_data.cc', 102 'engine/clear_server_data.cc',
103 'engine/clear_server_data.h', 103 'engine/clear_server_data.h',
104 'engine/commit.cc', 104 'engine/commit.cc',
105 'engine/commit.h', 105 'engine/commit.h',
106 'engine/commit_contribution.cc', 106 'engine/commit_contribution.cc',
107 'engine/commit_contribution.h', 107 'engine/commit_contribution.h',
108 'engine/commit_contributor.cc', 108 'engine/commit_contributor.cc',
109 'engine/commit_contributor.h', 109 'engine/commit_contributor.h',
110 'engine/commit_processor.cc', 110 'engine/commit_processor.cc',
111 'engine/commit_processor.h', 111 'engine/commit_processor.h',
112 'engine/commit_queue.cc',
113 'engine/commit_queue.h',
114 'engine/commit_queue_impl.cc',
stanisc 2015/08/29 00:10:01 There shouldn't be CommitQueueImpl. This is suppos
Gang Wu 2015/08/29 05:03:02 Done.
115 'engine/commit_queue_impl.h',
112 'engine/commit_util.cc', 116 'engine/commit_util.cc',
113 'engine/commit_util.h', 117 'engine/commit_util.h',
114 'engine/conflict_resolver.cc', 118 'engine/conflict_resolver.cc',
115 'engine/conflict_resolver.h', 119 'engine/conflict_resolver.h',
116 'engine/conflict_util.cc', 120 'engine/conflict_util.cc',
117 'engine/conflict_util.h', 121 'engine/conflict_util.h',
118 'engine/directory_commit_contribution.cc', 122 'engine/directory_commit_contribution.cc',
119 'engine/directory_commit_contribution.h', 123 'engine/directory_commit_contribution.h',
120 'engine/directory_commit_contributor.cc', 124 'engine/directory_commit_contributor.cc',
121 'engine/directory_commit_contributor.h', 125 'engine/directory_commit_contributor.h',
122 'engine/directory_update_handler.cc', 126 'engine/directory_update_handler.cc',
123 'engine/directory_update_handler.h', 127 'engine/directory_update_handler.h',
124 'engine/entity_tracker.cc', 128 'engine/entity_tracker.cc',
125 'engine/entity_tracker.h', 129 'engine/entity_tracker.h',
126 'engine/get_commit_ids.cc', 130 'engine/get_commit_ids.cc',
127 'engine/get_commit_ids.h', 131 'engine/get_commit_ids.h',
128 'engine/get_updates_delegate.cc', 132 'engine/get_updates_delegate.cc',
129 'engine/get_updates_delegate.h', 133 'engine/get_updates_delegate.h',
130 'engine/get_updates_processor.cc', 134 'engine/get_updates_processor.cc',
131 'engine/get_updates_processor.h', 135 'engine/get_updates_processor.h',
132 'engine/model_type_entity.cc', 136 'engine/model_type_entity.cc',
133 'engine/model_type_entity.h', 137 'engine/model_type_entity.h',
134 'engine/model_type_sync_proxy.cc', 138 'engine/model_type_processor.cc',
135 'engine/model_type_sync_proxy.h', 139 'engine/model_type_processor.h',
136 'engine/model_type_sync_proxy_impl.cc', 140 'engine/model_type_processor_impl.cc',
137 'engine/model_type_sync_proxy_impl.h', 141 'engine/model_type_processor_impl.h',
138 'engine/model_type_sync_worker.cc',
139 'engine/model_type_sync_worker.h',
140 'engine/model_type_sync_worker_impl.cc',
141 'engine/model_type_sync_worker_impl.h',
142 'engine/net/server_connection_manager.cc', 142 'engine/net/server_connection_manager.cc',
143 'engine/net/server_connection_manager.h', 143 'engine/net/server_connection_manager.h',
144 'engine/net/url_translator.cc', 144 'engine/net/url_translator.cc',
145 'engine/net/url_translator.h', 145 'engine/net/url_translator.h',
146 'engine/non_blocking_type_commit_contribution.cc', 146 'engine/non_blocking_type_commit_contribution.cc',
147 'engine/non_blocking_type_commit_contribution.h', 147 'engine/non_blocking_type_commit_contribution.h',
148 'engine/nudge_handler.cc', 148 'engine/nudge_handler.cc',
149 'engine/nudge_handler.h', 149 'engine/nudge_handler.h',
150 'engine/nudge_source.cc', 150 'engine/nudge_source.cc',
151 'engine/nudge_source.h', 151 'engine/nudge_source.h',
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 }, 539 },
540 'includes': [ 540 'includes': [
541 '../build/protoc.gypi' 541 '../build/protoc.gypi'
542 ], 542 ],
543 'defines': [ 543 'defines': [
544 'SYNC_IMPLEMENTATION' 544 'SYNC_IMPLEMENTATION'
545 ], 545 ],
546 }, 546 },
547 ], 547 ],
548 } 548 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698