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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 11316115: [chromedriver] Write websocket client and sync websocket client. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 }, 610 },
611 }, 611 },
612 }], 612 }],
613 ], 613 ],
614 }, 614 },
615 { 615 {
616 'target_name': 'chromedriver2_lib', 616 'target_name': 'chromedriver2_lib',
617 'type': 'static_library', 617 'type': 'static_library',
618 'dependencies': [ 618 'dependencies': [
619 '../base/base.gyp:base', 619 '../base/base.gyp:base',
620 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations' 620 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
621 '../net/net.gyp:net',
621 ], 622 ],
622 'include_dirs': [ 623 'include_dirs': [
623 '..', 624 '..',
624 ], 625 ],
625 'sources': [ 626 'sources': [
626 'test/chromedriver/chrome.h', 627 'test/chromedriver/chrome.h',
627 'test/chromedriver/chrome_finder.cc', 628 'test/chromedriver/chrome_finder.cc',
628 'test/chromedriver/chrome_finder.h', 629 'test/chromedriver/chrome_finder.h',
629 'test/chromedriver/chrome_finder_mac.mm', 630 'test/chromedriver/chrome_finder_mac.mm',
630 'test/chromedriver/chrome_impl.cc', 631 'test/chromedriver/chrome_impl.cc',
631 'test/chromedriver/chrome_impl.h', 632 'test/chromedriver/chrome_impl.h',
632 'test/chromedriver/chrome_launcher.h', 633 'test/chromedriver/chrome_launcher.h',
633 'test/chromedriver/chrome_launcher_impl.cc', 634 'test/chromedriver/chrome_launcher_impl.cc',
634 'test/chromedriver/chrome_launcher_impl.h', 635 'test/chromedriver/chrome_launcher_impl.h',
635 'test/chromedriver/chromedriver.cc', 636 'test/chromedriver/chromedriver.cc',
636 'test/chromedriver/chromedriver.h', 637 'test/chromedriver/chromedriver.h',
637 'test/chromedriver/command.h', 638 'test/chromedriver/command.h',
638 'test/chromedriver/command_executor.h', 639 'test/chromedriver/command_executor.h',
639 'test/chromedriver/command_executor_impl.cc', 640 'test/chromedriver/command_executor_impl.cc',
640 'test/chromedriver/command_executor_impl.h', 641 'test/chromedriver/command_executor_impl.h',
641 'test/chromedriver/commands.cc', 642 'test/chromedriver/commands.cc',
642 'test/chromedriver/commands.h', 643 'test/chromedriver/commands.h',
644 'test/chromedriver/net/sync_web_socket.cc',
645 'test/chromedriver/net/sync_web_socket.h',
646 'test/chromedriver/net/url_request_context_getter.cc',
647 'test/chromedriver/net/url_request_context_getter.h',
648 'test/chromedriver/net/web_socket.cc',
649 'test/chromedriver/net/web_socket.h',
643 'test/chromedriver/session.cc', 650 'test/chromedriver/session.cc',
644 'test/chromedriver/session.h', 651 'test/chromedriver/session.h',
645 'test/chromedriver/session_command.cc', 652 'test/chromedriver/session_command.cc',
646 'test/chromedriver/session_command.h', 653 'test/chromedriver/session_command.h',
647 'test/chromedriver/session_map.h', 654 'test/chromedriver/session_map.h',
648 'test/chromedriver/status.cc', 655 'test/chromedriver/status.cc',
649 'test/chromedriver/status.h', 656 'test/chromedriver/status.h',
650 'test/chromedriver/synchronized_map.h', 657 'test/chromedriver/synchronized_map.h',
651 ], 658 ],
652 }, 659 },
653 { 660 {
654 'target_name': 'chromedriver2_unittests', 661 'target_name': 'chromedriver2_unittests',
655 'type': 'executable', 662 'type': 'executable',
656 'dependencies': [ 663 'dependencies': [
657 'chromedriver2_lib', 664 'chromedriver2_lib',
658 '../base/base.gyp:base', 665 '../base/base.gyp:base',
659 '../base/base.gyp:run_all_unittests', 666 '../base/base.gyp:run_all_unittests',
667 '../net/net.gyp:http_server',
668 '../net/net.gyp:net',
669 '../net/net.gyp:net_test_support',
660 '../testing/gtest.gyp:gtest', 670 '../testing/gtest.gyp:gtest',
661 ], 671 ],
662 'include_dirs': [ 672 'include_dirs': [
663 '..,' 673 '..,'
664 ], 674 ],
665 'sources': [ 675 'sources': [
666 'test/chromedriver/chrome_finder_unittest.cc', 676 'test/chromedriver/chrome_finder_unittest.cc',
667 'test/chromedriver/chromedriver_unittest.cc', 677 'test/chromedriver/chromedriver_unittest.cc',
668 'test/chromedriver/command_executor_impl_unittest.cc', 678 'test/chromedriver/command_executor_impl_unittest.cc',
669 'test/chromedriver/commands_unittest.cc', 679 'test/chromedriver/commands_unittest.cc',
670 'test/chromedriver/fake_session_accessor.cc', 680 'test/chromedriver/fake_session_accessor.cc',
671 'test/chromedriver/fake_session_accessor.h', 681 'test/chromedriver/fake_session_accessor.h',
682 'test/chromedriver/net/sync_web_socket_unittest.cc',
683 'test/chromedriver/net/web_socket_unittest.cc',
672 'test/chromedriver/session_command_unittest.cc', 684 'test/chromedriver/session_command_unittest.cc',
673 'test/chromedriver/session_unittest.cc', 685 'test/chromedriver/session_unittest.cc',
674 'test/chromedriver/status_unittest.cc', 686 'test/chromedriver/status_unittest.cc',
675 'test/chromedriver/synchronized_map_unittest.cc', 687 'test/chromedriver/synchronized_map_unittest.cc',
676 ], 688 ],
677 }, 689 },
678 # This is the new ChromeDriver based on DevTools. 690 # This is the new ChromeDriver based on DevTools.
679 { 691 {
680 'target_name': 'chromedriver2', 692 'target_name': 'chromedriver2',
681 'type': 'loadable_module', 693 'type': 'loadable_module',
(...skipping 2158 matching lines...) Expand 10 before | Expand all | Expand 10 after
2840 'sync_integration_tests.isolate', 2852 'sync_integration_tests.isolate',
2841 ], 2853 ],
2842 'sources': [ 2854 'sources': [
2843 'sync_integration_tests.isolate', 2855 'sync_integration_tests.isolate',
2844 ], 2856 ],
2845 }, 2857 },
2846 ], 2858 ],
2847 }], 2859 }],
2848 ], # 'conditions' 2860 ], # 'conditions'
2849 } 2861 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/chromedriver/net/sync_web_socket.h » ('j') | chrome/test/chromedriver/net/web_socket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698