OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |