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

Side by Side Diff: sync/sync_tests.gypi

Issue 264773007: Remove Sync FakeServer standalone executable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | sync/test/fake_server/fake_sync_server_http_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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'targets': [ 6 'targets': [
7 # Test support files for the 'sync_core' target. 7 # Test support files for the 'sync_core' target.
8 { 8 {
9 'target_name': 'test_support_sync_core', 9 'target_name': 'test_support_sync_core',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 '../base/base.gyp:test_support_base', 591 '../base/base.gyp:test_support_base',
592 '../net/net.gyp:net_test_support', 592 '../net/net.gyp:net_test_support',
593 '../testing/gtest.gyp:gtest', 593 '../testing/gtest.gyp:gtest',
594 'test_support_sync_testserver', 594 'test_support_sync_testserver',
595 ], 595 ],
596 'sources': [ 596 'sources': [
597 'tools/testserver/run_sync_testserver.cc', 597 'tools/testserver/run_sync_testserver.cc',
598 ], 598 ],
599 }, 599 },
600 600
601 # A standalone executable that runs a Sync FakeServer instance.
602 {
603 'target_name': 'run_sync_fake_server',
604 'type': 'executable',
605 'dependencies': [
606 '../base/base.gyp:base',
607 '../base/base.gyp:test_support_base',
608 '../net/net.gyp:http_server',
609 '../net/net.gyp:net',
610 '../net/net.gyp:net_test_support',
611 '../testing/gtest.gyp:gtest',
612 '../url/url.gyp:url_lib',
613 'test_support_sync_fake_server',
614 ],
615 'sources': [
616 'test/fake_server/run_sync_fake_server.cc',
617 'test/fake_server/fake_sync_server_http_handler.cc',
618 'test/fake_server/fake_sync_server_http_handler.h',
619 ],
620 },
621
622 # A tool to listen to sync notifications and print them out. 601 # A tool to listen to sync notifications and print them out.
623 { 602 {
624 'target_name': 'sync_listen_notifications', 603 'target_name': 'sync_listen_notifications',
625 'type': 'executable', 604 'type': 'executable',
626 'defines': [ 605 'defines': [
627 'SYNC_TEST', 606 'SYNC_TEST',
628 ], 607 ],
629 'dependencies': [ 608 'dependencies': [
630 '../base/base.gyp:base', 609 '../base/base.gyp:base',
631 '../jingle/jingle.gyp:notifier', 610 '../jingle/jingle.gyp:notifier',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 ], 681 ],
703 'variables': { 682 'variables': {
704 'test_suite_name': 'sync_unit_tests', 683 'test_suite_name': 'sync_unit_tests',
705 }, 684 },
706 'includes': [ '../build/apk_test.gypi' ], 685 'includes': [ '../build/apk_test.gypi' ],
707 }, 686 },
708 ], 687 ],
709 }], 688 }],
710 ], 689 ],
711 } 690 }
OLDNEW
« no previous file with comments | « no previous file | sync/test/fake_server/fake_sync_server_http_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698