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

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: Fix several issues 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
« no previous file with comments | « sync/protocol/sync_proto.gyp ('k') | sync/syncable/model_type.cc » ('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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 'syncable/entry_kernel.cc', 177 'syncable/entry_kernel.cc',
178 'syncable/entry_kernel.h', 178 'syncable/entry_kernel.h',
179 'syncable/in_memory_directory_backing_store.cc', 179 'syncable/in_memory_directory_backing_store.cc',
180 'syncable/in_memory_directory_backing_store.h', 180 'syncable/in_memory_directory_backing_store.h',
181 'syncable/invalid_directory_backing_store.cc', 181 'syncable/invalid_directory_backing_store.cc',
182 'syncable/invalid_directory_backing_store.h', 182 'syncable/invalid_directory_backing_store.h',
183 'syncable/metahandle_set.h', 183 'syncable/metahandle_set.h',
184 'syncable/model_type.cc', 184 'syncable/model_type.cc',
185 'syncable/mutable_entry.cc', 185 'syncable/mutable_entry.cc',
186 'syncable/mutable_entry.h', 186 'syncable/mutable_entry.h',
187 'syncable/nigori_handler.cc',
187 'syncable/nigori_handler.h', 188 'syncable/nigori_handler.h',
188 'syncable/nigori_handler.cc',
189 'syncable/nigori_util.cc', 189 'syncable/nigori_util.cc',
190 'syncable/nigori_util.h', 190 'syncable/nigori_util.h',
191 'syncable/on_disk_directory_backing_store.cc', 191 'syncable/on_disk_directory_backing_store.cc',
192 'syncable/on_disk_directory_backing_store.h', 192 'syncable/on_disk_directory_backing_store.h',
193 'syncable/read_transaction.cc', 193 'syncable/read_transaction.cc',
194 'syncable/read_transaction.h', 194 'syncable/read_transaction.h',
195 'syncable/scoped_kernel_lock.h', 195 'syncable/scoped_kernel_lock.h',
196 'syncable/syncable-inl.h', 196 'syncable/syncable-inl.h',
197 'syncable/syncable_changes_version.h', 197 'syncable/syncable_changes_version.h',
198 'syncable/syncable_columns.h', 198 'syncable/syncable_columns.h',
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 'test/engine/test_directory_setter_upper.h', 451 'test/engine/test_directory_setter_upper.h',
452 'test/engine/test_id_factory.h', 452 'test/engine/test_id_factory.h',
453 'test/engine/test_syncable_utils.cc', 453 'test/engine/test_syncable_utils.cc',
454 'test/engine/test_syncable_utils.h', 454 'test/engine/test_syncable_utils.h',
455 'test/fake_encryptor.cc', 455 'test/fake_encryptor.cc',
456 'test/fake_encryptor.h', 456 'test/fake_encryptor.h',
457 'test/fake_sync_encryption_handler.h', 457 'test/fake_sync_encryption_handler.h',
458 'test/fake_sync_encryption_handler.cc', 458 'test/fake_sync_encryption_handler.cc',
459 'test/fake_extensions_activity_monitor.cc', 459 'test/fake_extensions_activity_monitor.cc',
460 'test/fake_extensions_activity_monitor.h', 460 'test/fake_extensions_activity_monitor.h',
461 'test/mock_transaction_observer.cc',
462 'test/mock_transaction_observer.h',
461 'test/null_directory_change_delegate.cc', 463 'test/null_directory_change_delegate.cc',
462 'test/null_directory_change_delegate.h', 464 'test/null_directory_change_delegate.h',
463 'test/null_transaction_observer.cc', 465 'test/null_transaction_observer.cc',
464 'test/null_transaction_observer.h', 466 'test/null_transaction_observer.h',
465 'test/sessions/test_scoped_session_event_listener.h', 467 'test/sessions/test_scoped_session_event_listener.h',
466 'test/test_directory_backing_store.cc', 468 'test/test_directory_backing_store.cc',
467 'test/test_directory_backing_store.h', 469 'test/test_directory_backing_store.h',
468 'util/test_unrecoverable_error_handler.cc', 470 'util/test_unrecoverable_error_handler.cc',
469 'util/test_unrecoverable_error_handler.h', 471 'util/test_unrecoverable_error_handler.h',
470 ], 472 ],
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 'variables': { 879 'variables': {
878 'test_suite_name': 'sync_unit_tests', 880 'test_suite_name': 'sync_unit_tests',
879 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 881 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
880 }, 882 },
881 'includes': [ '../build/apk_test.gypi' ], 883 'includes': [ '../build/apk_test.gypi' ],
882 }, 884 },
883 ], 885 ],
884 }], 886 }],
885 ], 887 ],
886 } 888 }
OLDNEW
« no previous file with comments | « sync/protocol/sync_proto.gyp ('k') | sync/syncable/model_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698