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

Side by Side Diff: sync/sync.gyp

Issue 10805002: [Sync] Enable adding notifier observers from ProfileSyncService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typos 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
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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 'target_name': 'test_support_syncapi_core', 471 'target_name': 'test_support_syncapi_core',
472 'type': 'static_library', 472 'type': 'static_library',
473 'variables': { 'enable_wexit_time_destructors': 1, }, 473 'variables': { 'enable_wexit_time_destructors': 1, },
474 'include_dirs': [ 474 'include_dirs': [
475 '..', 475 '..',
476 ], 476 ],
477 'dependencies': [ 477 'dependencies': [
478 '../base/base.gyp:base', 478 '../base/base.gyp:base',
479 '../testing/gtest.gyp:gtest', 479 '../testing/gtest.gyp:gtest',
480 'syncapi_core', 480 'syncapi_core',
481 'sync_notifier',
481 'test_support_sync', 482 'test_support_sync',
482 ], 483 ],
483 'export_dependent_settings': [ 484 'export_dependent_settings': [
484 '../testing/gtest.gyp:gtest', 485 '../testing/gtest.gyp:gtest',
485 'syncapi_core', 486 'syncapi_core',
487 'sync_notifier',
486 'test_support_sync', 488 'test_support_sync',
487 ], 489 ],
488 'sources': [ 490 'sources': [
489 'internal_api/public/test/fake_sync_manager.h', 491 'internal_api/public/test/fake_sync_manager.h',
490 'internal_api/public/test/test_entry_factory.h', 492 'internal_api/public/test/test_entry_factory.h',
491 'internal_api/public/test/test_internal_components_factory.h', 493 'internal_api/public/test/test_internal_components_factory.h',
492 'internal_api/public/test/test_user_share.h', 494 'internal_api/public/test/test_user_share.h',
493 'internal_api/test/fake_sync_manager.cc', 495 'internal_api/test/fake_sync_manager.cc',
494 'internal_api/test/test_entry_factory.cc', 496 'internal_api/test/test_entry_factory.cc',
495 'internal_api/test/test_internal_components_factory.cc', 497 'internal_api/test/test_internal_components_factory.cc',
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 'include_dirs': [ 699 'include_dirs': [
698 '..', 700 '..',
699 ], 701 ],
700 'sources': [ 702 'sources': [
701 'internal_api/public/change_record_unittest.cc', 703 'internal_api/public/change_record_unittest.cc',
702 'internal_api/debug_info_event_listener_unittest.cc', 704 'internal_api/debug_info_event_listener_unittest.cc',
703 'internal_api/http_bridge_unittest.cc', 705 'internal_api/http_bridge_unittest.cc',
704 'internal_api/js_mutation_event_observer_unittest.cc', 706 'internal_api/js_mutation_event_observer_unittest.cc',
705 'internal_api/js_sync_manager_observer_unittest.cc', 707 'internal_api/js_sync_manager_observer_unittest.cc',
706 'internal_api/syncapi_server_connection_manager_unittest.cc', 708 'internal_api/syncapi_server_connection_manager_unittest.cc',
707 'internal_api/syncapi_unittest.cc', 709 'internal_api/sync_manager_impl_unittest.cc',
708 ], 710 ],
709 }, 711 },
710 }, 712 },
711 713
712 # Unit tests for the 'syncapi_service' target. This cannot be a static 714 # Unit tests for the 'syncapi_service' target. This cannot be a static
713 # library because the unit test files have to be compiled directly 715 # library because the unit test files have to be compiled directly
714 # into the executable, so we push the target files to the 716 # into the executable, so we push the target files to the
715 # depending executable target via direct_dependent_settings. 717 # depending executable target via direct_dependent_settings.
716 { 718 {
717 'target_name': 'syncapi_service_tests', 719 'target_name': 'syncapi_service_tests',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 'test_suite_name': 'sync_unit_tests', 839 'test_suite_name': 'sync_unit_tests',
838 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 840 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
839 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 841 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
840 }, 842 },
841 'includes': [ '../build/apk_test.gypi' ], 843 'includes': [ '../build/apk_test.gypi' ],
842 }, 844 },
843 ], 845 ],
844 }], 846 }],
845 ], 847 ],
846 } 848 }
OLDNEW
« sync/internal_api/sync_manager_impl.cc ('K') | « sync/notifier/sync_notifier.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698