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

Side by Side Diff: sync/sync_core.gypi

Issue 25638003: sync: Implement per-type commit interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Attempt to fix win compile Created 7 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 | Annotate | Revision Log
« no previous file with comments | « sync/sessions/sync_session_context.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 18 matching lines...) Expand all
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/apply_updates_and_resolve_conflicts_command.cc', 35 'engine/apply_updates_and_resolve_conflicts_command.cc',
36 'engine/apply_updates_and_resolve_conflicts_command.h', 36 'engine/apply_updates_and_resolve_conflicts_command.h',
37 'engine/backoff_delay_provider.cc', 37 'engine/backoff_delay_provider.cc',
38 'engine/backoff_delay_provider.h', 38 'engine/backoff_delay_provider.h',
39 'engine/build_commit_command.cc', 39 'engine/commit_util.cc',
40 'engine/build_commit_command.h', 40 'engine/commit_util.h',
41 'engine/commit.cc', 41 'engine/commit.cc',
42 'engine/commit.h', 42 'engine/commit.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',
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',
47 'engine/download.cc', 51 'engine/download.cc',
48 'engine/download.h', 52 'engine/download.h',
49 'engine/get_commit_ids.cc', 53 'engine/get_commit_ids.cc',
50 'engine/get_commit_ids.h', 54 'engine/get_commit_ids.h',
51 'engine/model_changing_syncer_command.cc', 55 'engine/model_changing_syncer_command.cc',
52 'engine/model_changing_syncer_command.h', 56 'engine/model_changing_syncer_command.h',
53 'engine/net/server_connection_manager.cc', 57 'engine/net/server_connection_manager.cc',
54 'engine/net/server_connection_manager.h', 58 'engine/net/server_connection_manager.h',
55 'engine/net/url_translator.cc', 59 'engine/net/url_translator.cc',
56 'engine/net/url_translator.h', 60 'engine/net/url_translator.h',
57 'engine/nudge_source.cc', 61 'engine/nudge_source.cc',
58 'engine/nudge_source.h', 62 'engine/nudge_source.h',
59 'engine/process_commit_response_command.cc',
60 'engine/process_commit_response_command.h',
61 'engine/process_updates_command.cc', 63 'engine/process_updates_command.cc',
62 'engine/process_updates_command.h', 64 'engine/process_updates_command.h',
63 'engine/store_timestamps_command.cc', 65 'engine/store_timestamps_command.cc',
64 'engine/store_timestamps_command.h', 66 'engine/store_timestamps_command.h',
65 'engine/sync_engine_event.cc', 67 'engine/sync_engine_event.cc',
66 'engine/sync_engine_event.h', 68 'engine/sync_engine_event.h',
67 'engine/sync_scheduler.cc', 69 'engine/sync_scheduler.cc',
68 'engine/sync_scheduler.h', 70 'engine/sync_scheduler.h',
69 'engine/sync_scheduler_impl.cc', 71 'engine/sync_scheduler_impl.cc',
70 'engine/sync_scheduler_impl.h', 72 'engine/sync_scheduler_impl.h',
(...skipping 26 matching lines...) Expand all
97 'protocol/proto_enum_conversions.h', 99 'protocol/proto_enum_conversions.h',
98 'protocol/proto_value_conversions.cc', 100 'protocol/proto_value_conversions.cc',
99 'protocol/proto_value_conversions.h', 101 'protocol/proto_value_conversions.h',
100 'protocol/sync_protocol_error.cc', 102 'protocol/sync_protocol_error.cc',
101 'protocol/sync_protocol_error.h', 103 'protocol/sync_protocol_error.h',
102 'sessions/data_type_tracker.cc', 104 'sessions/data_type_tracker.cc',
103 'sessions/data_type_tracker.h', 105 'sessions/data_type_tracker.h',
104 'sessions/debug_info_getter.h', 106 'sessions/debug_info_getter.h',
105 'sessions/nudge_tracker.cc', 107 'sessions/nudge_tracker.cc',
106 'sessions/nudge_tracker.h', 108 'sessions/nudge_tracker.h',
107 'sessions/ordered_commit_set.cc',
108 'sessions/ordered_commit_set.h',
109 'sessions/status_controller.cc', 109 'sessions/status_controller.cc',
110 'sessions/status_controller.h', 110 'sessions/status_controller.h',
111 'sessions/sync_session.cc', 111 'sessions/sync_session.cc',
112 'sessions/sync_session.h', 112 'sessions/sync_session.h',
113 'sessions/sync_session_context.cc', 113 'sessions/sync_session_context.cc',
114 'sessions/sync_session_context.h', 114 'sessions/sync_session_context.h',
115 'syncable/blob.h', 115 'syncable/blob.h',
116 'syncable/dir_open_result.h', 116 'syncable/dir_open_result.h',
117 'syncable/directory.cc', 117 'syncable/directory.cc',
118 'syncable/directory.h', 118 'syncable/directory.h',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 'util/get_session_name_win.cc', 188 'util/get_session_name_win.cc',
189 'util/get_session_name_win.h', 189 'util/get_session_name_win.h',
190 'util/logging.cc', 190 'util/logging.cc',
191 'util/logging.h', 191 'util/logging.h',
192 'util/nigori.cc', 192 'util/nigori.cc',
193 'util/nigori.h', 193 'util/nigori.h',
194 'util/time.cc', 194 'util/time.cc',
195 'util/time.h', 195 'util/time.h',
196 ], 196 ],
197 } 197 }
OLDNEW
« no previous file with comments | « sync/sessions/sync_session_context.cc ('k') | sync/sync_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698