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

Side by Side Diff: sync/sync.gyp

Issue 10911073: NOT FOR COMMIT: Add DeviceInfo type and ChangeProcessor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Introduce SyncedDeviceTracker (the ChangeProcessor) Created 8 years, 3 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
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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 'syncable/entry_kernel.cc', 174 'syncable/entry_kernel.cc',
175 'syncable/entry_kernel.h', 175 'syncable/entry_kernel.h',
176 'syncable/in_memory_directory_backing_store.cc', 176 'syncable/in_memory_directory_backing_store.cc',
177 'syncable/in_memory_directory_backing_store.h', 177 'syncable/in_memory_directory_backing_store.h',
178 'syncable/invalid_directory_backing_store.cc', 178 'syncable/invalid_directory_backing_store.cc',
179 'syncable/invalid_directory_backing_store.h', 179 'syncable/invalid_directory_backing_store.h',
180 'syncable/metahandle_set.h', 180 'syncable/metahandle_set.h',
181 'syncable/model_type.cc', 181 'syncable/model_type.cc',
182 'syncable/mutable_entry.cc', 182 'syncable/mutable_entry.cc',
183 'syncable/mutable_entry.h', 183 'syncable/mutable_entry.h',
184 'syncable/nigori_handler.cc',
184 'syncable/nigori_handler.h', 185 'syncable/nigori_handler.h',
185 'syncable/nigori_handler.cc',
186 'syncable/nigori_util.cc', 186 'syncable/nigori_util.cc',
187 'syncable/nigori_util.h', 187 'syncable/nigori_util.h',
188 'syncable/on_disk_directory_backing_store.cc', 188 'syncable/on_disk_directory_backing_store.cc',
189 'syncable/on_disk_directory_backing_store.h', 189 'syncable/on_disk_directory_backing_store.h',
190 'syncable/read_transaction.cc', 190 'syncable/read_transaction.cc',
191 'syncable/read_transaction.h', 191 'syncable/read_transaction.h',
192 'syncable/scoped_kernel_lock.h', 192 'syncable/scoped_kernel_lock.h',
193 'syncable/syncable-inl.h', 193 'syncable/syncable-inl.h',
194 'syncable/syncable_changes_version.h', 194 'syncable/syncable_changes_version.h',
195 'syncable/syncable_columns.h', 195 'syncable/syncable_columns.h',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 'test/engine/test_directory_setter_upper.h', 447 'test/engine/test_directory_setter_upper.h',
448 'test/engine/test_id_factory.h', 448 'test/engine/test_id_factory.h',
449 'test/engine/test_syncable_utils.cc', 449 'test/engine/test_syncable_utils.cc',
450 'test/engine/test_syncable_utils.h', 450 'test/engine/test_syncable_utils.h',
451 'test/fake_encryptor.cc', 451 'test/fake_encryptor.cc',
452 'test/fake_encryptor.h', 452 'test/fake_encryptor.h',
453 'test/fake_sync_encryption_handler.h', 453 'test/fake_sync_encryption_handler.h',
454 'test/fake_sync_encryption_handler.cc', 454 'test/fake_sync_encryption_handler.cc',
455 'test/fake_extensions_activity_monitor.cc', 455 'test/fake_extensions_activity_monitor.cc',
456 'test/fake_extensions_activity_monitor.h', 456 'test/fake_extensions_activity_monitor.h',
457 'test/mock_transaction_observer.cc',
458 'test/mock_transaction_observer.h',
457 'test/null_directory_change_delegate.cc', 459 'test/null_directory_change_delegate.cc',
458 'test/null_directory_change_delegate.h', 460 'test/null_directory_change_delegate.h',
459 'test/null_transaction_observer.cc', 461 'test/null_transaction_observer.cc',
460 'test/null_transaction_observer.h', 462 'test/null_transaction_observer.h',
461 'test/sessions/test_scoped_session_event_listener.h', 463 'test/sessions/test_scoped_session_event_listener.h',
462 'test/test_directory_backing_store.cc', 464 'test/test_directory_backing_store.cc',
463 'test/test_directory_backing_store.h', 465 'test/test_directory_backing_store.h',
464 'util/test_unrecoverable_error_handler.cc', 466 'util/test_unrecoverable_error_handler.cc',
465 'util/test_unrecoverable_error_handler.h', 467 'util/test_unrecoverable_error_handler.h',
466 ], 468 ],
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 'variables': { 872 'variables': {
871 'test_suite_name': 'sync_unit_tests', 873 'test_suite_name': 'sync_unit_tests',
872 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 874 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
873 }, 875 },
874 'includes': [ '../build/apk_test.gypi' ], 876 'includes': [ '../build/apk_test.gypi' ],
875 }, 877 },
876 ], 878 ],
877 }], 879 }],
878 ], 880 ],
879 } 881 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698