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

Side by Side Diff: sync/sync_core.gypi

Issue 93433006: sync: Introduce ModelTypeRegistry and helpers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix memory leak in tests Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « sync/sessions/sync_session_unittest.cc ('k') | sync/sync_tests.gypi » ('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 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 'include_dirs': [ 6 'include_dirs': [
7 '..', 7 '..',
8 ], 8 ],
9 'defines': [ 9 'defines': [
10 'SYNC_IMPLEMENTATION', 10 'SYNC_IMPLEMENTATION',
(...skipping 16 matching lines...) Expand all
27 }], 27 }],
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 'base/sync_export.h', 30 'base/sync_export.h',
31 'engine/all_status.cc', 31 'engine/all_status.cc',
32 'engine/all_status.h', 32 'engine/all_status.h',
33 'engine/apply_control_data_updates.cc', 33 'engine/apply_control_data_updates.cc',
34 'engine/apply_control_data_updates.h', 34 'engine/apply_control_data_updates.h',
35 'engine/backoff_delay_provider.cc', 35 'engine/backoff_delay_provider.cc',
36 'engine/backoff_delay_provider.h', 36 'engine/backoff_delay_provider.h',
37 'engine/commit.cc',
38 'engine/commit.h',
39 'engine/commit_processor.cc',
40 'engine/commit_processor.h',
37 'engine/commit_util.cc', 41 'engine/commit_util.cc',
38 'engine/commit_util.h', 42 'engine/commit_util.h',
39 'engine/commit.cc',
40 'engine/commit.h',
41 'engine/sync_directory_update_handler.cc',
42 'engine/sync_directory_update_handler.h',
43 'engine/sync_directory_commit_contribution.cc',
44 'engine/sync_directory_commit_contribution.h',
45 'engine/sync_directory_commit_contributor.cc',
46 'engine/sync_directory_commit_contributor.h',
47 'engine/conflict_resolver.cc', 43 'engine/conflict_resolver.cc',
48 'engine/conflict_resolver.h', 44 'engine/conflict_resolver.h',
49 'engine/conflict_util.cc', 45 'engine/conflict_util.cc',
50 'engine/conflict_util.h', 46 'engine/conflict_util.h',
51 'engine/download.cc', 47 'engine/download.cc',
52 'engine/download.h', 48 'engine/download.h',
53 'engine/get_commit_ids.cc', 49 'engine/get_commit_ids.cc',
54 'engine/get_commit_ids.h', 50 'engine/get_commit_ids.h',
51 'engine/get_updates_processor.cc',
52 'engine/get_updates_processor.h',
55 'engine/net/server_connection_manager.cc', 53 'engine/net/server_connection_manager.cc',
56 'engine/net/server_connection_manager.h', 54 'engine/net/server_connection_manager.h',
57 'engine/net/url_translator.cc', 55 'engine/net/url_translator.cc',
58 'engine/net/url_translator.h', 56 'engine/net/url_translator.h',
59 'engine/nudge_source.cc', 57 'engine/nudge_source.cc',
60 'engine/nudge_source.h', 58 'engine/nudge_source.h',
61 'engine/process_updates_util.cc', 59 'engine/process_updates_util.cc',
62 'engine/process_updates_util.h', 60 'engine/process_updates_util.h',
61 'engine/sync_directory_commit_contribution.cc',
62 'engine/sync_directory_commit_contribution.h',
63 'engine/sync_directory_commit_contributor.cc',
64 'engine/sync_directory_commit_contributor.h',
65 'engine/sync_directory_update_handler.cc',
66 'engine/sync_directory_update_handler.h',
63 'engine/sync_engine_event.cc', 67 'engine/sync_engine_event.cc',
64 'engine/sync_engine_event.h', 68 'engine/sync_engine_event.h',
65 'engine/sync_scheduler.cc', 69 'engine/sync_scheduler.cc',
66 'engine/sync_scheduler.h', 70 'engine/sync_scheduler.h',
67 'engine/sync_scheduler_impl.cc', 71 'engine/sync_scheduler_impl.cc',
68 'engine/sync_scheduler_impl.h', 72 'engine/sync_scheduler_impl.h',
69 'engine/syncer.cc', 73 'engine/syncer.cc',
70 'engine/syncer.h', 74 'engine/syncer.h',
71 'engine/syncer_proto_util.cc', 75 'engine/syncer_proto_util.cc',
72 'engine/syncer_proto_util.h', 76 'engine/syncer_proto_util.h',
(...skipping 18 matching lines...) Expand all
91 'js/sync_js_controller.h', 95 'js/sync_js_controller.h',
92 'protocol/proto_enum_conversions.cc', 96 'protocol/proto_enum_conversions.cc',
93 'protocol/proto_enum_conversions.h', 97 'protocol/proto_enum_conversions.h',
94 'protocol/proto_value_conversions.cc', 98 'protocol/proto_value_conversions.cc',
95 'protocol/proto_value_conversions.h', 99 'protocol/proto_value_conversions.h',
96 'protocol/sync_protocol_error.cc', 100 'protocol/sync_protocol_error.cc',
97 'protocol/sync_protocol_error.h', 101 'protocol/sync_protocol_error.h',
98 'sessions/data_type_tracker.cc', 102 'sessions/data_type_tracker.cc',
99 'sessions/data_type_tracker.h', 103 'sessions/data_type_tracker.h',
100 'sessions/debug_info_getter.h', 104 'sessions/debug_info_getter.h',
105 'sessions/model_type_registry.cc',
106 'sessions/model_type_registry.h',
101 'sessions/nudge_tracker.cc', 107 'sessions/nudge_tracker.cc',
102 'sessions/nudge_tracker.h', 108 'sessions/nudge_tracker.h',
103 'sessions/status_controller.cc', 109 'sessions/status_controller.cc',
104 'sessions/status_controller.h', 110 'sessions/status_controller.h',
105 'sessions/sync_session.cc', 111 'sessions/sync_session.cc',
106 'sessions/sync_session.h', 112 'sessions/sync_session.h',
107 'sessions/sync_session_context.cc', 113 'sessions/sync_session_context.cc',
108 'sessions/sync_session_context.h', 114 'sessions/sync_session_context.h',
109 'syncable/blob.h', 115 'syncable/blob.h',
110 'syncable/dir_open_result.h', 116 'syncable/dir_open_result.h',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'util/get_session_name_win.cc', 188 'util/get_session_name_win.cc',
183 'util/get_session_name_win.h', 189 'util/get_session_name_win.h',
184 'util/logging.cc', 190 'util/logging.cc',
185 'util/logging.h', 191 'util/logging.h',
186 'util/nigori.cc', 192 'util/nigori.cc',
187 'util/nigori.h', 193 'util/nigori.h',
188 'util/time.cc', 194 'util/time.cc',
189 'util/time.h', 195 'util/time.h',
190 ], 196 ],
191 } 197 }
OLDNEW
« no previous file with comments | « sync/sessions/sync_session_unittest.cc ('k') | sync/sync_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698