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

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

Powered by Google App Engine
This is Rietveld 408576698