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

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 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 '../build/temp_gyp/googleurl.gyp:googleurl',
622 '../net/net.gyp:net',
621 ], 623 ],
622 'include_dirs': [ 624 'include_dirs': [
623 '..', 625 '..',
624 ], 626 ],
625 'sources': [ 627 'sources': [
626 'test/chromedriver/chrome.h', 628 'test/chromedriver/chrome.h',
627 'test/chromedriver/chrome_finder.cc', 629 'test/chromedriver/chrome_finder.cc',
628 'test/chromedriver/chrome_finder.h', 630 'test/chromedriver/chrome_finder.h',
629 'test/chromedriver/chrome_finder_mac.mm', 631 'test/chromedriver/chrome_finder_mac.mm',
630 'test/chromedriver/chrome_impl.cc', 632 'test/chromedriver/chrome_impl.cc',
631 'test/chromedriver/chrome_impl.h', 633 'test/chromedriver/chrome_impl.h',
632 'test/chromedriver/chrome_launcher.h', 634 'test/chromedriver/chrome_launcher.h',
633 'test/chromedriver/chrome_launcher_impl.cc', 635 'test/chromedriver/chrome_launcher_impl.cc',
634 'test/chromedriver/chrome_launcher_impl.h', 636 'test/chromedriver/chrome_launcher_impl.h',
635 'test/chromedriver/chromedriver.cc', 637 'test/chromedriver/chromedriver.cc',
636 'test/chromedriver/chromedriver.h', 638 'test/chromedriver/chromedriver.h',
637 'test/chromedriver/command.h', 639 'test/chromedriver/command.h',
638 'test/chromedriver/command_executor.h', 640 'test/chromedriver/command_executor.h',
639 'test/chromedriver/command_executor_impl.cc', 641 'test/chromedriver/command_executor_impl.cc',
640 'test/chromedriver/command_executor_impl.h', 642 'test/chromedriver/command_executor_impl.h',
641 'test/chromedriver/commands.cc', 643 'test/chromedriver/commands.cc',
642 'test/chromedriver/commands.h', 644 'test/chromedriver/commands.h',
645 'test/chromedriver/net/sync_websocket.cc',
646 'test/chromedriver/net/sync_websocket.h',
647 'test/chromedriver/net/url_request_context_getter.cc',
648 'test/chromedriver/net/url_request_context_getter.h',
649 'test/chromedriver/net/websocket.cc',
650 'test/chromedriver/net/websocket.h',
643 'test/chromedriver/session.cc', 651 'test/chromedriver/session.cc',
644 'test/chromedriver/session.h', 652 'test/chromedriver/session.h',
645 'test/chromedriver/session_command.cc', 653 'test/chromedriver/session_command.cc',
646 'test/chromedriver/session_command.h', 654 'test/chromedriver/session_command.h',
647 'test/chromedriver/session_map.h', 655 'test/chromedriver/session_map.h',
648 'test/chromedriver/status.cc', 656 'test/chromedriver/status.cc',
649 'test/chromedriver/status.h', 657 'test/chromedriver/status.h',
650 'test/chromedriver/synchronized_map.h', 658 'test/chromedriver/synchronized_map.h',
651 ], 659 ],
652 }, 660 },
653 { 661 {
654 'target_name': 'chromedriver2_unittests', 662 'target_name': 'chromedriver2_unittests',
655 'type': 'executable', 663 'type': 'executable',
656 'dependencies': [ 664 'dependencies': [
657 'chromedriver2_lib', 665 'chromedriver2_lib',
658 '../base/base.gyp:base', 666 '../base/base.gyp:base',
659 '../base/base.gyp:run_all_unittests', 667 '../base/base.gyp:run_all_unittests',
668 '../build/temp_gyp/googleurl.gyp:googleurl',
669 '../net/net.gyp:http_server',
670 '../net/net.gyp:net',
671 '../net/net.gyp:net_test_support',
660 '../testing/gtest.gyp:gtest', 672 '../testing/gtest.gyp:gtest',
661 ], 673 ],
662 'include_dirs': [ 674 'include_dirs': [
663 '..,' 675 '..,'
664 ], 676 ],
665 'sources': [ 677 'sources': [
666 'test/chromedriver/chrome_finder_unittest.cc', 678 'test/chromedriver/chrome_finder_unittest.cc',
667 'test/chromedriver/chromedriver_unittest.cc', 679 'test/chromedriver/chromedriver_unittest.cc',
668 'test/chromedriver/command_executor_impl_unittest.cc', 680 'test/chromedriver/command_executor_impl_unittest.cc',
669 'test/chromedriver/commands_unittest.cc', 681 'test/chromedriver/commands_unittest.cc',
670 'test/chromedriver/fake_session_accessor.cc', 682 'test/chromedriver/fake_session_accessor.cc',
671 'test/chromedriver/fake_session_accessor.h', 683 'test/chromedriver/fake_session_accessor.h',
684 'test/chromedriver/net/sync_websocket_unittest.cc',
685 'test/chromedriver/net/websocket_unittest.cc',
672 'test/chromedriver/session_command_unittest.cc', 686 'test/chromedriver/session_command_unittest.cc',
673 'test/chromedriver/session_unittest.cc', 687 'test/chromedriver/session_unittest.cc',
674 'test/chromedriver/status_unittest.cc', 688 'test/chromedriver/status_unittest.cc',
675 'test/chromedriver/synchronized_map_unittest.cc', 689 'test/chromedriver/synchronized_map_unittest.cc',
676 ], 690 ],
677 }, 691 },
678 # This is the new ChromeDriver based on DevTools. 692 # This is the new ChromeDriver based on DevTools.
679 { 693 {
680 'target_name': 'chromedriver2', 694 'target_name': 'chromedriver2',
681 'type': 'loadable_module', 695 'type': 'loadable_module',
(...skipping 2158 matching lines...) Expand 10 before | Expand all | Expand 10 after
2840 'sync_integration_tests.isolate', 2854 'sync_integration_tests.isolate',
2841 ], 2855 ],
2842 'sources': [ 2856 'sources': [
2843 'sync_integration_tests.isolate', 2857 'sync_integration_tests.isolate',
2844 ], 2858 ],
2845 }, 2859 },
2846 ], 2860 ],
2847 }], 2861 }],
2848 ], # 'conditions' 2862 ], # 'conditions'
2849 } 2863 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/chromedriver/net/sync_websocket.h » ('j') | chrome/test/chromedriver/net/sync_websocket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698