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

Side by Side Diff: sync/sync.gyp

Issue 11638018: [sync] Componentize sync: Part 5: Eliminate filename collisions in sync.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/syncable/base_transaction.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 }, 8 },
9 'targets': [ 9 'targets': [
10 # The core sync library. 10 # The core sync library.
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'protocol/sync_protocol_error.h', 119 'protocol/sync_protocol_error.h',
120 'sessions/debug_info_getter.h', 120 'sessions/debug_info_getter.h',
121 'sessions/ordered_commit_set.cc', 121 'sessions/ordered_commit_set.cc',
122 'sessions/ordered_commit_set.h', 122 'sessions/ordered_commit_set.h',
123 'sessions/status_controller.cc', 123 'sessions/status_controller.cc',
124 'sessions/status_controller.h', 124 'sessions/status_controller.h',
125 'sessions/sync_session.cc', 125 'sessions/sync_session.cc',
126 'sessions/sync_session.h', 126 'sessions/sync_session.h',
127 'sessions/sync_session_context.cc', 127 'sessions/sync_session_context.cc',
128 'sessions/sync_session_context.h', 128 'sessions/sync_session_context.h',
129 'syncable/base_transaction.cc',
130 'syncable/base_transaction.h',
131 'syncable/blob.h', 129 'syncable/blob.h',
132 'syncable/dir_open_result.h', 130 'syncable/dir_open_result.h',
133 'syncable/directory.cc', 131 'syncable/directory.cc',
134 'syncable/directory.h', 132 'syncable/directory.h',
135 'syncable/directory_backing_store.cc', 133 'syncable/directory_backing_store.cc',
136 'syncable/directory_backing_store.h', 134 'syncable/directory_backing_store.h',
137 'syncable/directory_change_delegate.h', 135 'syncable/directory_change_delegate.h',
138 'syncable/entry.cc', 136 'syncable/entry.cc',
139 'syncable/entry.h', 137 'syncable/entry.h',
140 'syncable/entry_kernel.cc', 138 'syncable/entry_kernel.cc',
141 'syncable/entry_kernel.h', 139 'syncable/entry_kernel.h',
142 'syncable/in_memory_directory_backing_store.cc', 140 'syncable/in_memory_directory_backing_store.cc',
143 'syncable/in_memory_directory_backing_store.h', 141 'syncable/in_memory_directory_backing_store.h',
144 'syncable/invalid_directory_backing_store.cc', 142 'syncable/invalid_directory_backing_store.cc',
145 'syncable/invalid_directory_backing_store.h', 143 'syncable/invalid_directory_backing_store.h',
146 'syncable/metahandle_set.h', 144 'syncable/metahandle_set.h',
147 'syncable/model_type.cc', 145 'syncable/model_type.cc',
148 'syncable/mutable_entry.cc', 146 'syncable/mutable_entry.cc',
149 'syncable/mutable_entry.h', 147 'syncable/mutable_entry.h',
150 'syncable/nigori_handler.cc', 148 'syncable/nigori_handler.cc',
151 'syncable/nigori_handler.h', 149 'syncable/nigori_handler.h',
152 'syncable/nigori_util.cc', 150 'syncable/nigori_util.cc',
153 'syncable/nigori_util.h', 151 'syncable/nigori_util.h',
154 'syncable/on_disk_directory_backing_store.cc', 152 'syncable/on_disk_directory_backing_store.cc',
155 'syncable/on_disk_directory_backing_store.h', 153 'syncable/on_disk_directory_backing_store.h',
156 'syncable/read_transaction.cc',
157 'syncable/read_transaction.h',
158 'syncable/scoped_kernel_lock.h', 154 'syncable/scoped_kernel_lock.h',
159 'syncable/syncable-inl.h', 155 'syncable/syncable-inl.h',
156
157 # Renamed to not collide with identically named files in internal_api.
158 # TODO(sync): Figure out if this class is required.
159 'syncable/syncable_base_transaction.cc',
160 'syncable/syncable_base_transaction.h',
161
160 'syncable/syncable_changes_version.h', 162 'syncable/syncable_changes_version.h',
161 'syncable/syncable_columns.h', 163 'syncable/syncable_columns.h',
162 'syncable/syncable_enum_conversions.cc', 164 'syncable/syncable_enum_conversions.cc',
163 'syncable/syncable_enum_conversions.h', 165 'syncable/syncable_enum_conversions.h',
164 'syncable/syncable_id.cc', 166 'syncable/syncable_id.cc',
165 'syncable/syncable_id.h', 167 'syncable/syncable_id.h',
166 'syncable/syncable_proto_util.cc', 168 'syncable/syncable_proto_util.cc',
167 'syncable/syncable_proto_util.h', 169 'syncable/syncable_proto_util.h',
170
171 # Renamed to not collide with identically named files in internal_api.
172 # TODO(sync): Figure out if this class is required.
173 'syncable/syncable_read_transaction.cc',
174 'syncable/syncable_read_transaction.h',
175
168 'syncable/syncable_util.cc', 176 'syncable/syncable_util.cc',
169 'syncable/syncable_util.h', 177 'syncable/syncable_util.h',
178
179 # Renamed to not collide with identically named files in internal_api.
180 # TODO(sync): Figure out if this class is required.
rlarocque 2012/12/19 22:04:49 I wouldn't bother with these TODOs. It's not real
Raghu Simha 2012/12/19 22:10:36 I removed the rest of the comment too, since on se
181 'syncable/syncable_write_transaction.cc',
182 'syncable/syncable_write_transaction.h',
183
170 'syncable/transaction_observer.h', 184 'syncable/transaction_observer.h',
171 'syncable/write_transaction.cc',
172 'syncable/write_transaction.h',
173 'syncable/write_transaction_info.cc', 185 'syncable/write_transaction_info.cc',
174 'syncable/write_transaction_info.h', 186 'syncable/write_transaction_info.h',
175 'util/cryptographer.cc', 187 'util/cryptographer.cc',
176 'util/cryptographer.h', 188 'util/cryptographer.h',
177 189
178 # TODO(akalin): Figure out a better place to put 190 # TODO(akalin): Figure out a better place to put
179 # data_encryption_win*; it's also used by autofill. 191 # data_encryption_win*; it's also used by autofill.
180 'util/data_encryption_win.cc', 192 'util/data_encryption_win.cc',
181 'util/data_encryption_win.h', 193 'util/data_encryption_win.h',
182 194
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 'variables': { 1006 'variables': {
995 'test_suite_name': 'sync_unit_tests', 1007 'test_suite_name': 'sync_unit_tests',
996 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 1008 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
997 }, 1009 },
998 'includes': [ '../build/apk_test.gypi' ], 1010 'includes': [ '../build/apk_test.gypi' ],
999 }, 1011 },
1000 ], 1012 ],
1001 }], 1013 }],
1002 ], 1014 ],
1003 } 1015 }
OLDNEW
« no previous file with comments | « sync/sessions/sync_session_unittest.cc ('k') | sync/syncable/base_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698