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

Side by Side Diff: sync/sync.gyp

Issue 10645004: [Sync] Move HttpBridge to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to head Created 8 years, 6 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/syncapi_unittest.cc ('k') | sync/test/engine/mock_connection_manager.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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 # Propagate sync_proto since our headers include its generated 290 # Propagate sync_proto since our headers include its generated
291 # files. 291 # files.
292 'protocol/sync_proto.gyp:sync_proto', 292 'protocol/sync_proto.gyp:sync_proto',
293 'sync', 293 'sync',
294 ], 294 ],
295 'sources': [ 295 'sources': [
296 'internal_api/public/base_node.h', 296 'internal_api/public/base_node.h',
297 'internal_api/public/base_transaction.h', 297 'internal_api/public/base_transaction.h',
298 'internal_api/public/change_record.h', 298 'internal_api/public/change_record.h',
299 'internal_api/public/configure_reason.h', 299 'internal_api/public/configure_reason.h',
300 'internal_api/public/http_bridge.h',
300 'internal_api/public/http_post_provider_factory.h', 301 'internal_api/public/http_post_provider_factory.h',
301 'internal_api/public/http_post_provider_interface.h', 302 'internal_api/public/http_post_provider_interface.h',
302 'internal_api/public/read_node.h', 303 'internal_api/public/read_node.h',
303 'internal_api/public/read_transaction.h', 304 'internal_api/public/read_transaction.h',
304 'internal_api/public/sync_manager.h', 305 'internal_api/public/sync_manager.h',
305 'internal_api/public/user_share.h', 306 'internal_api/public/user_share.h',
306 'internal_api/public/write_node.h', 307 'internal_api/public/write_node.h',
307 'internal_api/public/write_transaction.h', 308 'internal_api/public/write_transaction.h',
308 'internal_api/base_node.cc', 309 'internal_api/base_node.cc',
309 'internal_api/base_transaction.cc', 310 'internal_api/base_transaction.cc',
310 'internal_api/change_record.cc', 311 'internal_api/change_record.cc',
311 'internal_api/change_reorder_buffer.cc', 312 'internal_api/change_reorder_buffer.cc',
312 'internal_api/change_reorder_buffer.h', 313 'internal_api/change_reorder_buffer.h',
313 'internal_api/debug_info_event_listener.cc', 314 'internal_api/debug_info_event_listener.cc',
314 'internal_api/debug_info_event_listener.h', 315 'internal_api/debug_info_event_listener.h',
316 'internal_api/http_bridge.cc',
315 'internal_api/js_mutation_event_observer.cc', 317 'internal_api/js_mutation_event_observer.cc',
316 'internal_api/js_mutation_event_observer.h', 318 'internal_api/js_mutation_event_observer.h',
317 'internal_api/js_sync_manager_observer.cc', 319 'internal_api/js_sync_manager_observer.cc',
318 'internal_api/js_sync_manager_observer.h', 320 'internal_api/js_sync_manager_observer.h',
319 'internal_api/read_node.cc', 321 'internal_api/read_node.cc',
320 'internal_api/read_transaction.cc', 322 'internal_api/read_transaction.cc',
321 'internal_api/syncapi_internal.cc', 323 'internal_api/syncapi_internal.cc',
322 'internal_api/syncapi_internal.h', 324 'internal_api/syncapi_internal.h',
323 'internal_api/syncapi_server_connection_manager.cc', 325 'internal_api/syncapi_server_connection_manager.cc',
324 'internal_api/syncapi_server_connection_manager.h', 326 'internal_api/syncapi_server_connection_manager.h',
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 # into the executable, so we push the target files to the 634 # into the executable, so we push the target files to the
633 # depending executable target via direct_dependent_settings. 635 # depending executable target via direct_dependent_settings.
634 { 636 {
635 'target_name': 'syncapi_core_tests', 637 'target_name': 'syncapi_core_tests',
636 'type': 'none', 638 'type': 'none',
637 # We only want unit test executables to include this target. 639 # We only want unit test executables to include this target.
638 'suppress_wildcard': 1, 640 'suppress_wildcard': 1,
639 'dependencies': [ 641 'dependencies': [
640 '../base/base.gyp:base', 642 '../base/base.gyp:base',
641 '../net/net.gyp:net', 643 '../net/net.gyp:net',
644 '../net/net.gyp:net_test_support',
642 '../testing/gmock.gyp:gmock', 645 '../testing/gmock.gyp:gmock',
643 '../testing/gtest.gyp:gtest', 646 '../testing/gtest.gyp:gtest',
644 'protocol/sync_proto.gyp:sync_proto', 647 'protocol/sync_proto.gyp:sync_proto',
645 'sync', 648 'sync',
646 'sync_notifier', 649 'sync_notifier',
647 'syncapi_core', 650 'syncapi_core',
648 'test_support_syncapi_core', 651 'test_support_syncapi_core',
649 ], 652 ],
650 # Propagate all dependencies since the actual compilation 653 # Propagate all dependencies since the actual compilation
651 # happens in the dependents. 654 # happens in the dependents.
652 'export_dependent_settings': [ 655 'export_dependent_settings': [
653 '../base/base.gyp:base', 656 '../base/base.gyp:base',
654 '../net/net.gyp:net', 657 '../net/net.gyp:net',
658 '../net/net.gyp:net_test_support',
655 '../testing/gmock.gyp:gmock', 659 '../testing/gmock.gyp:gmock',
656 '../testing/gtest.gyp:gtest', 660 '../testing/gtest.gyp:gtest',
657 'protocol/sync_proto.gyp:sync_proto', 661 'protocol/sync_proto.gyp:sync_proto',
658 'sync', 662 'sync',
659 'sync_notifier', 663 'sync_notifier',
660 'syncapi_core', 664 'syncapi_core',
661 'test_support_syncapi_core', 665 'test_support_syncapi_core',
662 ], 666 ],
663 'direct_dependent_settings': { 667 'direct_dependent_settings': {
664 'variables': { 'enable_wexit_time_destructors': 1, }, 668 'variables': { 'enable_wexit_time_destructors': 1, },
665 'include_dirs': [ 669 'include_dirs': [
666 '..', 670 '..',
667 ], 671 ],
668 'sources': [ 672 'sources': [
669 'internal_api/public/change_record_unittest.cc', 673 'internal_api/public/change_record_unittest.cc',
670 'internal_api/debug_info_event_listener_unittest.cc', 674 'internal_api/debug_info_event_listener_unittest.cc',
675 'internal_api/http_bridge_unittest.cc',
671 'internal_api/js_mutation_event_observer_unittest.cc', 676 'internal_api/js_mutation_event_observer_unittest.cc',
672 'internal_api/js_sync_manager_observer_unittest.cc', 677 'internal_api/js_sync_manager_observer_unittest.cc',
673 'internal_api/syncapi_server_connection_manager_unittest.cc', 678 'internal_api/syncapi_server_connection_manager_unittest.cc',
674 'internal_api/syncapi_unittest.cc', 679 'internal_api/syncapi_unittest.cc',
675 ], 680 ],
676 }, 681 },
677 }, 682 },
678 683
679 # Unit tests for the 'syncapi_service' target. This cannot be a static 684 # Unit tests for the 'syncapi_service' target. This cannot be a static
680 # library because the unit test files have to be compiled directly 685 # library because the unit test files have to be compiled directly
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 'test_suite_name': 'sync_unit_tests', 788 'test_suite_name': 'sync_unit_tests',
784 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 789 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
785 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 790 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
786 }, 791 },
787 'includes': [ '../build/apk_test.gypi' ], 792 'includes': [ '../build/apk_test.gypi' ],
788 }, 793 },
789 ], 794 ],
790 }], 795 }],
791 ], 796 ],
792 } 797 }
OLDNEW
« no previous file with comments | « sync/internal_api/syncapi_unittest.cc ('k') | sync/test/engine/mock_connection_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698