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

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: Remove comments 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 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.
11 { 11 {
(...skipping 107 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 'syncable/syncable_base_transaction.cc',
157 'syncable/syncable_base_transaction.h',
160 'syncable/syncable_changes_version.h', 158 'syncable/syncable_changes_version.h',
161 'syncable/syncable_columns.h', 159 'syncable/syncable_columns.h',
162 'syncable/syncable_enum_conversions.cc', 160 'syncable/syncable_enum_conversions.cc',
163 'syncable/syncable_enum_conversions.h', 161 'syncable/syncable_enum_conversions.h',
164 'syncable/syncable_id.cc', 162 'syncable/syncable_id.cc',
165 'syncable/syncable_id.h', 163 'syncable/syncable_id.h',
166 'syncable/syncable_proto_util.cc', 164 'syncable/syncable_proto_util.cc',
167 'syncable/syncable_proto_util.h', 165 'syncable/syncable_proto_util.h',
166 'syncable/syncable_read_transaction.cc',
167 'syncable/syncable_read_transaction.h',
168 'syncable/syncable_util.cc', 168 'syncable/syncable_util.cc',
169 'syncable/syncable_util.h', 169 'syncable/syncable_util.h',
170 'syncable/syncable_write_transaction.cc',
171 'syncable/syncable_write_transaction.h',
170 'syncable/transaction_observer.h', 172 'syncable/transaction_observer.h',
171 'syncable/write_transaction.cc',
172 'syncable/write_transaction.h',
173 'syncable/write_transaction_info.cc', 173 'syncable/write_transaction_info.cc',
174 'syncable/write_transaction_info.h', 174 'syncable/write_transaction_info.h',
175 'util/cryptographer.cc', 175 'util/cryptographer.cc',
176 'util/cryptographer.h', 176 'util/cryptographer.h',
177 177
178 # TODO(akalin): Figure out a better place to put 178 # TODO(akalin): Figure out a better place to put
179 # data_encryption_win*; it's also used by autofill. 179 # data_encryption_win*; it's also used by autofill.
180 'util/data_encryption_win.cc', 180 'util/data_encryption_win.cc',
181 'util/data_encryption_win.h', 181 'util/data_encryption_win.h',
182 182
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 'variables': { 994 'variables': {
995 'test_suite_name': 'sync_unit_tests', 995 'test_suite_name': 'sync_unit_tests',
996 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 996 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
997 }, 997 },
998 'includes': [ '../build/apk_test.gypi' ], 998 'includes': [ '../build/apk_test.gypi' ],
999 }, 999 },
1000 ], 1000 ],
1001 }], 1001 }],
1002 ], 1002 ],
1003 } 1003 }
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