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

Side by Side Diff: sync/sync.gyp

Issue 10827266: [Sync] Add SyncEncryptionHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Created 8 years, 4 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/internal_api/test/fake_sync_manager.cc ('k') | sync/syncable/nigori_handler.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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'syncable/entry_kernel.cc', 168 'syncable/entry_kernel.cc',
169 'syncable/entry_kernel.h', 169 'syncable/entry_kernel.h',
170 'syncable/in_memory_directory_backing_store.cc', 170 'syncable/in_memory_directory_backing_store.cc',
171 'syncable/in_memory_directory_backing_store.h', 171 'syncable/in_memory_directory_backing_store.h',
172 'syncable/invalid_directory_backing_store.cc', 172 'syncable/invalid_directory_backing_store.cc',
173 'syncable/invalid_directory_backing_store.h', 173 'syncable/invalid_directory_backing_store.h',
174 'syncable/metahandle_set.h', 174 'syncable/metahandle_set.h',
175 'syncable/model_type.cc', 175 'syncable/model_type.cc',
176 'syncable/mutable_entry.cc', 176 'syncable/mutable_entry.cc',
177 'syncable/mutable_entry.h', 177 'syncable/mutable_entry.h',
178 'syncable/nigori_handler.h',
179 'syncable/nigori_handler.cc',
178 'syncable/nigori_util.cc', 180 'syncable/nigori_util.cc',
179 'syncable/nigori_util.h', 181 'syncable/nigori_util.h',
180 'syncable/on_disk_directory_backing_store.cc', 182 'syncable/on_disk_directory_backing_store.cc',
181 'syncable/on_disk_directory_backing_store.h', 183 'syncable/on_disk_directory_backing_store.h',
182 'syncable/read_transaction.cc', 184 'syncable/read_transaction.cc',
183 'syncable/read_transaction.h', 185 'syncable/read_transaction.h',
184 'syncable/scoped_kernel_lock.h', 186 'syncable/scoped_kernel_lock.h',
185 'syncable/syncable-inl.h', 187 'syncable/syncable-inl.h',
186 'syncable/syncable_changes_version.h', 188 'syncable/syncable_changes_version.h',
187 'syncable/syncable_columns.h', 189 'syncable/syncable_columns.h',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 'internal_api/public/change_record.h', 317 'internal_api/public/change_record.h',
316 'internal_api/public/configure_reason.h', 318 'internal_api/public/configure_reason.h',
317 'internal_api/public/http_bridge.h', 319 'internal_api/public/http_bridge.h',
318 'internal_api/public/http_post_provider_factory.h', 320 'internal_api/public/http_post_provider_factory.h',
319 'internal_api/public/http_post_provider_interface.h', 321 'internal_api/public/http_post_provider_interface.h',
320 'internal_api/public/internal_components_factory.h', 322 'internal_api/public/internal_components_factory.h',
321 'internal_api/public/internal_components_factory_impl.h', 323 'internal_api/public/internal_components_factory_impl.h',
322 'internal_api/public/read_node.h', 324 'internal_api/public/read_node.h',
323 'internal_api/public/read_transaction.h', 325 'internal_api/public/read_transaction.h',
324 'internal_api/public/sync_manager.h', 326 'internal_api/public/sync_manager.h',
327 'internal_api/public/sync_encryption_handler.cc',
328 'internal_api/public/sync_encryption_handler.h',
325 'internal_api/public/sync_manager.cc', 329 'internal_api/public/sync_manager.cc',
326 'internal_api/public/sync_manager_factory.h', 330 'internal_api/public/sync_manager_factory.h',
327 'internal_api/public/user_share.h', 331 'internal_api/public/user_share.h',
328 'internal_api/public/write_node.h', 332 'internal_api/public/write_node.h',
329 'internal_api/public/write_transaction.h', 333 'internal_api/public/write_transaction.h',
330 'internal_api/base_node.cc', 334 'internal_api/base_node.cc',
331 'internal_api/base_transaction.cc', 335 'internal_api/base_transaction.cc',
332 'internal_api/change_record.cc', 336 'internal_api/change_record.cc',
333 'internal_api/change_reorder_buffer.cc', 337 'internal_api/change_reorder_buffer.cc',
334 'internal_api/change_reorder_buffer.h', 338 'internal_api/change_reorder_buffer.h',
335 'internal_api/debug_info_event_listener.cc', 339 'internal_api/debug_info_event_listener.cc',
336 'internal_api/debug_info_event_listener.h', 340 'internal_api/debug_info_event_listener.h',
337 'internal_api/http_bridge.cc', 341 'internal_api/http_bridge.cc',
338 'internal_api/internal_components_factory_impl.cc', 342 'internal_api/internal_components_factory_impl.cc',
339 'internal_api/js_mutation_event_observer.cc', 343 'internal_api/js_mutation_event_observer.cc',
340 'internal_api/js_mutation_event_observer.h', 344 'internal_api/js_mutation_event_observer.h',
345 'internal_api/js_sync_encryption_handler_observer.cc',
346 'internal_api/js_sync_encryption_handler_observer.h',
341 'internal_api/js_sync_manager_observer.cc', 347 'internal_api/js_sync_manager_observer.cc',
342 'internal_api/js_sync_manager_observer.h', 348 'internal_api/js_sync_manager_observer.h',
343 'internal_api/read_node.cc', 349 'internal_api/read_node.cc',
344 'internal_api/read_transaction.cc', 350 'internal_api/read_transaction.cc',
345 'internal_api/syncapi_internal.cc', 351 'internal_api/syncapi_internal.cc',
346 'internal_api/syncapi_internal.h', 352 'internal_api/syncapi_internal.h',
347 'internal_api/syncapi_server_connection_manager.cc', 353 'internal_api/syncapi_server_connection_manager.cc',
348 'internal_api/syncapi_server_connection_manager.h', 354 'internal_api/syncapi_server_connection_manager.h',
355 'internal_api/sync_encryption_handler_impl.cc',
356 'internal_api/sync_encryption_handler_impl.h',
349 'internal_api/sync_manager_factory.cc', 357 'internal_api/sync_manager_factory.cc',
350 'internal_api/sync_manager_impl.cc', 358 'internal_api/sync_manager_impl.cc',
351 'internal_api/sync_manager_impl.h', 359 'internal_api/sync_manager_impl.h',
352 'internal_api/user_share.cc', 360 'internal_api/user_share.cc',
353 'internal_api/write_node.cc', 361 'internal_api/write_node.cc',
354 'internal_api/write_transaction.cc', 362 'internal_api/write_transaction.cc',
355 ], 363 ],
356 }, 364 },
357 365
358 # The sync external API library. 366 # The sync external API library.
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 'test/engine/mock_connection_manager.h', 433 'test/engine/mock_connection_manager.h',
426 'test/engine/syncer_command_test.cc', 434 'test/engine/syncer_command_test.cc',
427 'test/engine/syncer_command_test.h', 435 'test/engine/syncer_command_test.h',
428 'test/engine/test_directory_setter_upper.cc', 436 'test/engine/test_directory_setter_upper.cc',
429 'test/engine/test_directory_setter_upper.h', 437 'test/engine/test_directory_setter_upper.h',
430 'test/engine/test_id_factory.h', 438 'test/engine/test_id_factory.h',
431 'test/engine/test_syncable_utils.cc', 439 'test/engine/test_syncable_utils.cc',
432 'test/engine/test_syncable_utils.h', 440 'test/engine/test_syncable_utils.h',
433 'test/fake_encryptor.cc', 441 'test/fake_encryptor.cc',
434 'test/fake_encryptor.h', 442 'test/fake_encryptor.h',
443 'test/fake_sync_encryption_handler.h',
444 'test/fake_sync_encryption_handler.cc',
435 'test/fake_extensions_activity_monitor.cc', 445 'test/fake_extensions_activity_monitor.cc',
436 'test/fake_extensions_activity_monitor.h', 446 'test/fake_extensions_activity_monitor.h',
437 'test/null_directory_change_delegate.cc', 447 'test/null_directory_change_delegate.cc',
438 'test/null_directory_change_delegate.h', 448 'test/null_directory_change_delegate.h',
439 'test/null_transaction_observer.cc', 449 'test/null_transaction_observer.cc',
440 'test/null_transaction_observer.h', 450 'test/null_transaction_observer.h',
441 'test/sessions/test_scoped_session_event_listener.h', 451 'test/sessions/test_scoped_session_event_listener.h',
442 'test/test_directory_backing_store.cc', 452 'test/test_directory_backing_store.cc',
443 'test/test_directory_backing_store.h', 453 'test/test_directory_backing_store.h',
444 'util/test_unrecoverable_error_handler.cc', 454 'util/test_unrecoverable_error_handler.cc',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 'direct_dependent_settings': { 712 'direct_dependent_settings': {
703 'variables': { 'enable_wexit_time_destructors': 1, }, 713 'variables': { 'enable_wexit_time_destructors': 1, },
704 'include_dirs': [ 714 'include_dirs': [
705 '..', 715 '..',
706 ], 716 ],
707 'sources': [ 717 'sources': [
708 'internal_api/public/change_record_unittest.cc', 718 'internal_api/public/change_record_unittest.cc',
709 'internal_api/debug_info_event_listener_unittest.cc', 719 'internal_api/debug_info_event_listener_unittest.cc',
710 'internal_api/http_bridge_unittest.cc', 720 'internal_api/http_bridge_unittest.cc',
711 'internal_api/js_mutation_event_observer_unittest.cc', 721 'internal_api/js_mutation_event_observer_unittest.cc',
722 'internal_api/js_sync_encryption_handler_observer_unittest.cc',
712 'internal_api/js_sync_manager_observer_unittest.cc', 723 'internal_api/js_sync_manager_observer_unittest.cc',
713 'internal_api/syncapi_server_connection_manager_unittest.cc', 724 'internal_api/syncapi_server_connection_manager_unittest.cc',
725 'internal_api/sync_encryption_handler_impl_unittest.cc',
714 'internal_api/sync_manager_impl_unittest.cc', 726 'internal_api/sync_manager_impl_unittest.cc',
715 ], 727 ],
716 }, 728 },
717 }, 729 },
718 730
719 # Unit tests for the 'syncapi_service' target. This cannot be a static 731 # Unit tests for the 'syncapi_service' target. This cannot be a static
720 # library because the unit test files have to be compiled directly 732 # library because the unit test files have to be compiled directly
721 # into the executable, so we push the target files to the 733 # into the executable, so we push the target files to the
722 # depending executable target via direct_dependent_settings. 734 # depending executable target via direct_dependent_settings.
723 { 735 {
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 'variables': { 855 'variables': {
844 'test_suite_name': 'sync_unit_tests', 856 'test_suite_name': 'sync_unit_tests',
845 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 857 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
846 }, 858 },
847 'includes': [ '../build/apk_test.gypi' ], 859 'includes': [ '../build/apk_test.gypi' ],
848 }, 860 },
849 ], 861 ],
850 }], 862 }],
851 ], 863 ],
852 } 864 }
OLDNEW
« no previous file with comments | « sync/internal_api/test/fake_sync_manager.cc ('k') | sync/syncable/nigori_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698