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

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
« no previous file with comments | « no previous file | chrome/test/chromedriver/net/sync_websocket.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 (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 },
(...skipping 15 matching lines...) Expand all
668 'test/chromedriver/command_executor_impl_unittest.cc', 676 'test/chromedriver/command_executor_impl_unittest.cc',
669 'test/chromedriver/commands_unittest.cc', 677 'test/chromedriver/commands_unittest.cc',
670 'test/chromedriver/fake_session_accessor.cc', 678 'test/chromedriver/fake_session_accessor.cc',
671 'test/chromedriver/fake_session_accessor.h', 679 'test/chromedriver/fake_session_accessor.h',
672 'test/chromedriver/session_command_unittest.cc', 680 'test/chromedriver/session_command_unittest.cc',
673 'test/chromedriver/session_unittest.cc', 681 'test/chromedriver/session_unittest.cc',
674 'test/chromedriver/status_unittest.cc', 682 'test/chromedriver/status_unittest.cc',
675 'test/chromedriver/synchronized_map_unittest.cc', 683 'test/chromedriver/synchronized_map_unittest.cc',
676 ], 684 ],
677 }, 685 },
686 # ChromeDriver2 tests that aren't run on the main buildbots.
687 {
688 'target_name': 'chromedriver2_tests',
689 'type': 'executable',
690 'dependencies': [
691 'chromedriver2_lib',
692 '../base/base.gyp:base',
693 '../base/base.gyp:run_all_unittests',
694 '../build/temp_gyp/googleurl.gyp:googleurl',
695 '../net/net.gyp:http_server',
696 '../net/net.gyp:net',
697 '../net/net.gyp:net_test_support',
698 '../testing/gtest.gyp:gtest',
699 ],
700 'include_dirs': [
701 '..,'
702 ],
703 'sources': [
704 'test/chromedriver/net/sync_websocket_unittest.cc',
705 'test/chromedriver/net/websocket_unittest.cc',
706 ],
707 },
678 # This is the new ChromeDriver based on DevTools. 708 # This is the new ChromeDriver based on DevTools.
679 { 709 {
680 'target_name': 'chromedriver2', 710 'target_name': 'chromedriver2',
681 'type': 'loadable_module', 711 'type': 'loadable_module',
682 'dependencies': [ 712 'dependencies': [
683 'chromedriver2_lib', 713 'chromedriver2_lib',
684 '../base/base.gyp:base', 714 '../base/base.gyp:base',
685 'test/chromedriver/third_party/jni/jni.gyp:jni', 715 'test/chromedriver/third_party/jni/jni.gyp:jni',
686 ], 716 ],
687 'include_dirs': [ 717 'include_dirs': [
(...skipping 2152 matching lines...) Expand 10 before | Expand all | Expand 10 after
2840 'sync_integration_tests.isolate', 2870 'sync_integration_tests.isolate',
2841 ], 2871 ],
2842 'sources': [ 2872 'sources': [
2843 'sync_integration_tests.isolate', 2873 'sync_integration_tests.isolate',
2844 ], 2874 ],
2845 }, 2875 },
2846 ], 2876 ],
2847 }], 2877 }],
2848 ], # 'conditions' 2878 ], # 'conditions'
2849 } 2879 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/chromedriver/net/sync_websocket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698