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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 11415205: [chromedriver] Implement connecting to devtools and loading a page. (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 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 'test/chromedriver/chrome_launcher_impl.cc', 670 'test/chromedriver/chrome_launcher_impl.cc',
671 'test/chromedriver/chrome_launcher_impl.h', 671 'test/chromedriver/chrome_launcher_impl.h',
672 'test/chromedriver/chromedriver.cc', 672 'test/chromedriver/chromedriver.cc',
673 'test/chromedriver/chromedriver.h', 673 'test/chromedriver/chromedriver.h',
674 'test/chromedriver/command.h', 674 'test/chromedriver/command.h',
675 'test/chromedriver/command_executor.h', 675 'test/chromedriver/command_executor.h',
676 'test/chromedriver/command_executor_impl.cc', 676 'test/chromedriver/command_executor_impl.cc',
677 'test/chromedriver/command_executor_impl.h', 677 'test/chromedriver/command_executor_impl.h',
678 'test/chromedriver/commands.cc', 678 'test/chromedriver/commands.cc',
679 'test/chromedriver/commands.h', 679 'test/chromedriver/commands.h',
680 'test/chromedriver/devtools_client.cc',
681 'test/chromedriver/devtools_client.h',
682 'test/chromedriver/net/net_util.cc',
683 'test/chromedriver/net/net_util.h',
680 'test/chromedriver/net/sync_websocket.cc', 684 'test/chromedriver/net/sync_websocket.cc',
681 'test/chromedriver/net/sync_websocket.h', 685 'test/chromedriver/net/sync_websocket.h',
682 'test/chromedriver/net/url_request_context_getter.cc', 686 'test/chromedriver/net/url_request_context_getter.cc',
683 'test/chromedriver/net/url_request_context_getter.h', 687 'test/chromedriver/net/url_request_context_getter.h',
684 'test/chromedriver/net/websocket.cc', 688 'test/chromedriver/net/websocket.cc',
685 'test/chromedriver/net/websocket.h', 689 'test/chromedriver/net/websocket.h',
686 'test/chromedriver/session.cc', 690 'test/chromedriver/session.cc',
687 'test/chromedriver/session.h', 691 'test/chromedriver/session.h',
688 'test/chromedriver/session_command.cc', 692 'test/chromedriver/session_command.cc',
689 'test/chromedriver/session_command.h', 693 'test/chromedriver/session_command.h',
(...skipping 10 matching lines...) Expand all
700 'chromedriver2_lib', 704 'chromedriver2_lib',
701 '../base/base.gyp:base', 705 '../base/base.gyp:base',
702 '../base/base.gyp:run_all_unittests', 706 '../base/base.gyp:run_all_unittests',
703 '../testing/gtest.gyp:gtest', 707 '../testing/gtest.gyp:gtest',
704 ], 708 ],
705 'include_dirs': [ 709 'include_dirs': [
706 '..,' 710 '..,'
707 ], 711 ],
708 'sources': [ 712 'sources': [
709 'test/chromedriver/chrome_finder_unittest.cc', 713 'test/chromedriver/chrome_finder_unittest.cc',
714 'test/chromedriver/chrome_impl_unittest.cc',
710 'test/chromedriver/chromedriver_unittest.cc', 715 'test/chromedriver/chromedriver_unittest.cc',
711 'test/chromedriver/command_executor_impl_unittest.cc', 716 'test/chromedriver/command_executor_impl_unittest.cc',
712 'test/chromedriver/commands_unittest.cc', 717 'test/chromedriver/commands_unittest.cc',
713 'test/chromedriver/fake_session_accessor.cc', 718 'test/chromedriver/fake_session_accessor.cc',
714 'test/chromedriver/fake_session_accessor.h', 719 'test/chromedriver/fake_session_accessor.h',
715 'test/chromedriver/session_command_unittest.cc', 720 'test/chromedriver/session_command_unittest.cc',
716 'test/chromedriver/session_unittest.cc', 721 'test/chromedriver/session_unittest.cc',
717 'test/chromedriver/status_unittest.cc', 722 'test/chromedriver/status_unittest.cc',
718 'test/chromedriver/synchronized_map_unittest.cc', 723 'test/chromedriver/synchronized_map_unittest.cc',
719 ], 724 ],
720 }, 725 },
721 # ChromeDriver2 tests that aren't run on the main buildbots. 726 # ChromeDriver2 tests that aren't run on the main buildbots.
722 { 727 {
723 'target_name': 'chromedriver2_tests', 728 'target_name': 'chromedriver2_tests',
724 'type': 'executable', 729 'type': 'executable',
725 'dependencies': [ 730 'dependencies': [
726 'chromedriver2_lib', 731 'chromedriver2_lib',
727 '../base/base.gyp:base', 732 '../base/base.gyp:base',
728 '../base/base.gyp:run_all_unittests', 733 '../base/base.gyp:run_all_unittests',
729 '../build/temp_gyp/googleurl.gyp:googleurl', 734 '../build/temp_gyp/googleurl.gyp:googleurl',
730 '../net/net.gyp:http_server', 735 '../net/net.gyp:http_server',
731 '../net/net.gyp:net', 736 '../net/net.gyp:net',
732 '../net/net.gyp:net_test_support', 737 '../net/net.gyp:net_test_support',
733 '../testing/gtest.gyp:gtest', 738 '../testing/gtest.gyp:gtest',
734 ], 739 ],
735 'include_dirs': [ 740 'include_dirs': [
736 '..,' 741 '..,'
737 ], 742 ],
738 'sources': [ 743 'sources': [
744 'test/chromedriver/net/net_util_unittest.cc',
739 'test/chromedriver/net/sync_websocket_unittest.cc', 745 'test/chromedriver/net/sync_websocket_unittest.cc',
740 'test/chromedriver/net/websocket_unittest.cc', 746 'test/chromedriver/net/websocket_unittest.cc',
741 ], 747 ],
742 }, 748 },
743 # This is the new ChromeDriver based on DevTools. 749 # This is the new ChromeDriver based on DevTools.
744 { 750 {
745 'target_name': 'chromedriver2', 751 'target_name': 'chromedriver2',
746 'type': 'loadable_module', 752 'type': 'loadable_module',
747 'dependencies': [ 753 'dependencies': [
748 'chromedriver2_lib', 754 'chromedriver2_lib',
(...skipping 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after
2863 'sync_integration_tests.isolate', 2869 'sync_integration_tests.isolate',
2864 ], 2870 ],
2865 'sources': [ 2871 'sources': [
2866 'sync_integration_tests.isolate', 2872 'sync_integration_tests.isolate',
2867 ], 2873 ],
2868 }, 2874 },
2869 ], 2875 ],
2870 }], 2876 }],
2871 ], # 'conditions' 2877 ], # 'conditions'
2872 } 2878 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/chromedriver/chrome.h » ('j') | chrome/test/chromedriver/chrome_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698