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

Side by Side Diff: sync/sync.gyp

Issue 10701046: sync: Remove SyncManager::TestingMode in favour of InternalComponentsFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test Created 8 years, 5 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 'sync', 292 'sync',
293 ], 293 ],
294 'sources': [ 294 'sources': [
295 'internal_api/public/base_node.h', 295 'internal_api/public/base_node.h',
296 'internal_api/public/base_transaction.h', 296 'internal_api/public/base_transaction.h',
297 'internal_api/public/change_record.h', 297 'internal_api/public/change_record.h',
298 'internal_api/public/configure_reason.h', 298 'internal_api/public/configure_reason.h',
299 'internal_api/public/http_bridge.h', 299 'internal_api/public/http_bridge.h',
300 'internal_api/public/http_post_provider_factory.h', 300 'internal_api/public/http_post_provider_factory.h',
301 'internal_api/public/http_post_provider_interface.h', 301 'internal_api/public/http_post_provider_interface.h',
302 'internal_api/public/internal_components_factory.h',
303 'internal_api/public/internal_components_factory_impl.h',
302 'internal_api/public/read_node.h', 304 'internal_api/public/read_node.h',
303 'internal_api/public/read_transaction.h', 305 'internal_api/public/read_transaction.h',
304 'internal_api/public/sync_manager.h', 306 'internal_api/public/sync_manager.h',
305 'internal_api/public/user_share.h', 307 'internal_api/public/user_share.h',
306 'internal_api/public/write_node.h', 308 'internal_api/public/write_node.h',
307 'internal_api/public/write_transaction.h', 309 'internal_api/public/write_transaction.h',
308 'internal_api/base_node.cc', 310 'internal_api/base_node.cc',
309 'internal_api/base_transaction.cc', 311 'internal_api/base_transaction.cc',
310 'internal_api/change_record.cc', 312 'internal_api/change_record.cc',
311 'internal_api/change_reorder_buffer.cc', 313 'internal_api/change_reorder_buffer.cc',
312 'internal_api/change_reorder_buffer.h', 314 'internal_api/change_reorder_buffer.h',
313 'internal_api/debug_info_event_listener.cc', 315 'internal_api/debug_info_event_listener.cc',
314 'internal_api/debug_info_event_listener.h', 316 'internal_api/debug_info_event_listener.h',
315 'internal_api/http_bridge.cc', 317 'internal_api/http_bridge.cc',
318 'internal_api/internal_components_factory_impl.cc',
316 'internal_api/js_mutation_event_observer.cc', 319 'internal_api/js_mutation_event_observer.cc',
317 'internal_api/js_mutation_event_observer.h', 320 'internal_api/js_mutation_event_observer.h',
318 'internal_api/js_sync_manager_observer.cc', 321 'internal_api/js_sync_manager_observer.cc',
319 'internal_api/js_sync_manager_observer.h', 322 'internal_api/js_sync_manager_observer.h',
320 'internal_api/read_node.cc', 323 'internal_api/read_node.cc',
321 'internal_api/read_transaction.cc', 324 'internal_api/read_transaction.cc',
322 'internal_api/syncapi_internal.cc', 325 'internal_api/syncapi_internal.cc',
323 'internal_api/syncapi_internal.h', 326 'internal_api/syncapi_internal.h',
324 'internal_api/syncapi_server_connection_manager.cc', 327 'internal_api/syncapi_server_connection_manager.cc',
325 'internal_api/syncapi_server_connection_manager.h', 328 'internal_api/syncapi_server_connection_manager.h',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 'internal_api/public/base/model_type_test_util.h', 390 'internal_api/public/base/model_type_test_util.h',
388 'js/js_test_util.cc', 391 'js/js_test_util.cc',
389 'js/js_test_util.h', 392 'js/js_test_util.h',
390 'sessions/test_util.cc', 393 'sessions/test_util.cc',
391 'sessions/test_util.h', 394 'sessions/test_util.h',
392 'syncable/syncable_mock.cc', 395 'syncable/syncable_mock.cc',
393 'syncable/syncable_mock.h', 396 'syncable/syncable_mock.h',
394 'test/callback_counter.h', 397 'test/callback_counter.h',
395 'test/engine/fake_model_worker.cc', 398 'test/engine/fake_model_worker.cc',
396 'test/engine/fake_model_worker.h', 399 'test/engine/fake_model_worker.h',
400 'test/engine/fake_sync_scheduler.cc',
401 'test/engine/fake_sync_scheduler.h',
397 'test/engine/mock_connection_manager.cc', 402 'test/engine/mock_connection_manager.cc',
398 'test/engine/mock_connection_manager.h', 403 'test/engine/mock_connection_manager.h',
399 'test/engine/syncer_command_test.cc', 404 'test/engine/syncer_command_test.cc',
400 'test/engine/syncer_command_test.h', 405 'test/engine/syncer_command_test.h',
401 'test/engine/test_directory_setter_upper.cc', 406 'test/engine/test_directory_setter_upper.cc',
402 'test/engine/test_directory_setter_upper.h', 407 'test/engine/test_directory_setter_upper.h',
403 'test/engine/test_id_factory.h', 408 'test/engine/test_id_factory.h',
404 'test/engine/test_syncable_utils.cc', 409 'test/engine/test_syncable_utils.cc',
405 'test/engine/test_syncable_utils.h', 410 'test/engine/test_syncable_utils.h',
406 'test/fake_encryptor.cc', 411 'test/fake_encryptor.cc',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 'syncapi_core', 462 'syncapi_core',
458 'test_support_sync', 463 'test_support_sync',
459 ], 464 ],
460 'export_dependent_settings': [ 465 'export_dependent_settings': [
461 '../testing/gtest.gyp:gtest', 466 '../testing/gtest.gyp:gtest',
462 'syncapi_core', 467 'syncapi_core',
463 'test_support_sync', 468 'test_support_sync',
464 ], 469 ],
465 'sources': [ 470 'sources': [
466 'internal_api/public/test/test_entry_factory.h', 471 'internal_api/public/test/test_entry_factory.h',
472 'internal_api/public/test/test_internal_components_factory.h',
467 'internal_api/public/test/test_user_share.h', 473 'internal_api/public/test/test_user_share.h',
468 'internal_api/test/test_entry_factory.cc', 474 'internal_api/test/test_entry_factory.cc',
475 'internal_api/test/test_internal_components_factory.cc',
469 'internal_api/test/test_user_share.cc', 476 'internal_api/test/test_user_share.cc',
470 ], 477 ],
471 }, 478 },
472 479
473 # Test support files for the 'syncapi_service' target. 480 # Test support files for the 'syncapi_service' target.
474 { 481 {
475 'target_name': 'test_support_syncapi_service', 482 'target_name': 'test_support_syncapi_service',
476 'type': 'static_library', 483 'type': 'static_library',
477 'include_dirs': [ 484 'include_dirs': [
478 '..', 485 '..',
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 'test_suite_name': 'sync_unit_tests', 814 'test_suite_name': 'sync_unit_tests',
808 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 815 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
809 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 816 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
810 }, 817 },
811 'includes': [ '../build/apk_test.gypi' ], 818 'includes': [ '../build/apk_test.gypi' ],
812 }, 819 },
813 ], 820 ],
814 }], 821 }],
815 ], 822 ],
816 } 823 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698