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

Side by Side Diff: sync/sync_core.gypi

Issue 161253002: sync: Add interfaces for per-type sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Another win compile fix Created 6 years, 10 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/model_type_registry.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 17 matching lines...) Expand all
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', 37 'engine/commit.cc',
38 'engine/commit_contribution.cc',
39 'engine/commit_contribution.h',
40 'engine/commit_contributor.cc',
41 'engine/commit_contributor.h',
38 'engine/commit.h', 42 'engine/commit.h',
39 'engine/commit_processor.cc', 43 'engine/commit_processor.cc',
40 'engine/commit_processor.h', 44 'engine/commit_processor.h',
41 'engine/commit_util.cc', 45 'engine/commit_util.cc',
42 'engine/commit_util.h', 46 'engine/commit_util.h',
43 'engine/conflict_resolver.cc', 47 'engine/conflict_resolver.cc',
44 'engine/conflict_resolver.h', 48 'engine/conflict_resolver.h',
45 'engine/conflict_util.cc', 49 'engine/conflict_util.cc',
46 'engine/conflict_util.h', 50 'engine/conflict_util.h',
51 'engine/directory_commit_contribution.cc',
52 'engine/directory_commit_contribution.h',
53 'engine/directory_commit_contributor.cc',
54 'engine/directory_commit_contributor.h',
55 'engine/directory_update_handler.cc',
56 'engine/directory_update_handler.h',
47 'engine/download.cc', 57 'engine/download.cc',
48 'engine/download.h', 58 'engine/download.h',
49 'engine/get_commit_ids.cc', 59 'engine/get_commit_ids.cc',
50 'engine/get_commit_ids.h', 60 'engine/get_commit_ids.h',
51 'engine/get_updates_delegate.cc', 61 'engine/get_updates_delegate.cc',
52 'engine/get_updates_delegate.h', 62 'engine/get_updates_delegate.h',
53 'engine/get_updates_processor.cc', 63 'engine/get_updates_processor.cc',
54 'engine/get_updates_processor.h', 64 'engine/get_updates_processor.h',
55 'engine/net/server_connection_manager.cc', 65 'engine/net/server_connection_manager.cc',
56 'engine/net/server_connection_manager.h', 66 'engine/net/server_connection_manager.h',
57 'engine/net/url_translator.cc', 67 'engine/net/url_translator.cc',
58 'engine/net/url_translator.h', 68 'engine/net/url_translator.h',
59 'engine/nudge_source.cc', 69 'engine/nudge_source.cc',
60 'engine/nudge_source.h', 70 'engine/nudge_source.h',
61 'engine/process_updates_util.cc', 71 'engine/process_updates_util.cc',
62 'engine/process_updates_util.h', 72 'engine/process_updates_util.h',
63 'engine/sync_cycle_event.cc', 73 'engine/sync_cycle_event.cc',
64 'engine/sync_cycle_event.h', 74 'engine/sync_cycle_event.h',
65 'engine/sync_directory_commit_contribution.cc',
66 'engine/sync_directory_commit_contribution.h',
67 'engine/sync_directory_commit_contributor.cc',
68 'engine/sync_directory_commit_contributor.h',
69 'engine/sync_directory_update_handler.cc',
70 'engine/sync_directory_update_handler.h',
71 'engine/sync_engine_event_listener.cc', 75 'engine/sync_engine_event_listener.cc',
72 'engine/sync_engine_event_listener.h', 76 'engine/sync_engine_event_listener.h',
73 'engine/sync_scheduler.cc',
74 'engine/sync_scheduler.h',
75 'engine/sync_scheduler_impl.cc',
76 'engine/sync_scheduler_impl.h',
77 'engine/syncer.cc', 77 'engine/syncer.cc',
78 'engine/syncer.h', 78 'engine/syncer.h',
79 'engine/syncer_proto_util.cc', 79 'engine/syncer_proto_util.cc',
80 'engine/syncer_proto_util.h', 80 'engine/syncer_proto_util.h',
81 'engine/syncer_types.h', 81 'engine/syncer_types.h',
82 'engine/syncer_util.cc', 82 'engine/syncer_util.cc',
83 'engine/syncer_util.h', 83 'engine/syncer_util.h',
84 'engine/sync_scheduler.cc',
85 'engine/sync_scheduler.h',
86 'engine/sync_scheduler_impl.cc',
87 'engine/sync_scheduler_impl.h',
84 'engine/traffic_logger.cc', 88 'engine/traffic_logger.cc',
85 'engine/traffic_logger.h', 89 'engine/traffic_logger.h',
86 'engine/traffic_recorder.cc', 90 'engine/traffic_recorder.cc',
87 'engine/traffic_recorder.h', 91 'engine/traffic_recorder.h',
88 'engine/update_applicator.cc', 92 'engine/update_applicator.cc',
89 'engine/update_applicator.h', 93 'engine/update_applicator.h',
94 'engine/update_handler.cc',
95 'engine/update_handler.h',
90 'js/js_arg_list.cc', 96 'js/js_arg_list.cc',
91 'js/js_arg_list.h', 97 'js/js_arg_list.h',
92 'js/js_backend.h', 98 'js/js_backend.h',
93 'js/js_controller.h', 99 'js/js_controller.h',
94 'js/js_event_details.cc', 100 'js/js_event_details.cc',
95 'js/js_event_details.h', 101 'js/js_event_details.h',
96 'js/js_event_handler.h', 102 'js/js_event_handler.h',
97 'js/js_reply_handler.h', 103 'js/js_reply_handler.h',
98 'js/sync_js_controller.cc', 104 'js/sync_js_controller.cc',
99 'js/sync_js_controller.h', 105 'js/sync_js_controller.h',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'util/get_session_name_win.cc', 198 'util/get_session_name_win.cc',
193 'util/get_session_name_win.h', 199 'util/get_session_name_win.h',
194 'util/logging.cc', 200 'util/logging.cc',
195 'util/logging.h', 201 'util/logging.h',
196 'util/nigori.cc', 202 'util/nigori.cc',
197 'util/nigori.h', 203 'util/nigori.h',
198 'util/time.cc', 204 'util/time.cc',
199 'util/time.h', 205 'util/time.h',
200 ], 206 ],
201 } 207 }
OLDNEW
« no previous file with comments | « sync/sessions/model_type_registry.cc ('k') | sync/sync_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698