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

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: address comments 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/chrome.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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 'test/chromedriver/chrome_launcher_impl.cc', 678 'test/chromedriver/chrome_launcher_impl.cc',
679 'test/chromedriver/chrome_launcher_impl.h', 679 'test/chromedriver/chrome_launcher_impl.h',
680 'test/chromedriver/chromedriver.cc', 680 'test/chromedriver/chromedriver.cc',
681 'test/chromedriver/chromedriver.h', 681 'test/chromedriver/chromedriver.h',
682 'test/chromedriver/command.h', 682 'test/chromedriver/command.h',
683 'test/chromedriver/command_executor.h', 683 'test/chromedriver/command_executor.h',
684 'test/chromedriver/command_executor_impl.cc', 684 'test/chromedriver/command_executor_impl.cc',
685 'test/chromedriver/command_executor_impl.h', 685 'test/chromedriver/command_executor_impl.h',
686 'test/chromedriver/commands.cc', 686 'test/chromedriver/commands.cc',
687 'test/chromedriver/commands.h', 687 'test/chromedriver/commands.h',
688 'test/chromedriver/devtools_client.cc',
689 'test/chromedriver/devtools_client.h',
690 'test/chromedriver/net/net_util.cc',
691 'test/chromedriver/net/net_util.h',
688 'test/chromedriver/net/sync_websocket.cc', 692 'test/chromedriver/net/sync_websocket.cc',
689 'test/chromedriver/net/sync_websocket.h', 693 'test/chromedriver/net/sync_websocket.h',
690 'test/chromedriver/net/url_request_context_getter.cc', 694 'test/chromedriver/net/url_request_context_getter.cc',
691 'test/chromedriver/net/url_request_context_getter.h', 695 'test/chromedriver/net/url_request_context_getter.h',
692 'test/chromedriver/net/websocket.cc', 696 'test/chromedriver/net/websocket.cc',
693 'test/chromedriver/net/websocket.h', 697 'test/chromedriver/net/websocket.h',
694 'test/chromedriver/session.cc', 698 'test/chromedriver/session.cc',
695 'test/chromedriver/session.h', 699 'test/chromedriver/session.h',
696 'test/chromedriver/session_command.cc', 700 'test/chromedriver/session_command.cc',
697 'test/chromedriver/session_command.h', 701 'test/chromedriver/session_command.h',
(...skipping 10 matching lines...) Expand all
708 'chromedriver2_lib', 712 'chromedriver2_lib',
709 '../base/base.gyp:base', 713 '../base/base.gyp:base',
710 '../base/base.gyp:run_all_unittests', 714 '../base/base.gyp:run_all_unittests',
711 '../testing/gtest.gyp:gtest', 715 '../testing/gtest.gyp:gtest',
712 ], 716 ],
713 'include_dirs': [ 717 'include_dirs': [
714 '..,' 718 '..,'
715 ], 719 ],
716 'sources': [ 720 'sources': [
717 'test/chromedriver/chrome_finder_unittest.cc', 721 'test/chromedriver/chrome_finder_unittest.cc',
722 'test/chromedriver/chrome_impl_unittest.cc',
718 'test/chromedriver/chromedriver_unittest.cc', 723 'test/chromedriver/chromedriver_unittest.cc',
719 'test/chromedriver/command_executor_impl_unittest.cc', 724 'test/chromedriver/command_executor_impl_unittest.cc',
720 'test/chromedriver/commands_unittest.cc', 725 'test/chromedriver/commands_unittest.cc',
721 'test/chromedriver/fake_session_accessor.cc', 726 'test/chromedriver/fake_session_accessor.cc',
722 'test/chromedriver/fake_session_accessor.h', 727 'test/chromedriver/fake_session_accessor.h',
723 'test/chromedriver/session_command_unittest.cc', 728 'test/chromedriver/session_command_unittest.cc',
724 'test/chromedriver/session_unittest.cc', 729 'test/chromedriver/session_unittest.cc',
725 'test/chromedriver/status_unittest.cc', 730 'test/chromedriver/status_unittest.cc',
726 'test/chromedriver/synchronized_map_unittest.cc', 731 'test/chromedriver/synchronized_map_unittest.cc',
727 ], 732 ],
(...skipping 10 matching lines...) Expand all
738 '../build/temp_gyp/googleurl.gyp:googleurl', 743 '../build/temp_gyp/googleurl.gyp:googleurl',
739 '../net/net.gyp:http_server', 744 '../net/net.gyp:http_server',
740 '../net/net.gyp:net', 745 '../net/net.gyp:net',
741 '../net/net.gyp:net_test_support', 746 '../net/net.gyp:net_test_support',
742 '../testing/gtest.gyp:gtest', 747 '../testing/gtest.gyp:gtest',
743 ], 748 ],
744 'include_dirs': [ 749 'include_dirs': [
745 '..,' 750 '..,'
746 ], 751 ],
747 'sources': [ 752 'sources': [
753 'test/chromedriver/net/net_util_unittest.cc',
748 'test/chromedriver/net/sync_websocket_unittest.cc', 754 'test/chromedriver/net/sync_websocket_unittest.cc',
749 'test/chromedriver/net/websocket_unittest.cc', 755 'test/chromedriver/net/websocket_unittest.cc',
750 ], 756 ],
751 }, 757 },
752 # This is the new ChromeDriver based on DevTools. 758 # This is the new ChromeDriver based on DevTools.
753 { 759 {
754 'target_name': 'chromedriver2', 760 'target_name': 'chromedriver2',
755 'type': 'loadable_module', 761 'type': 'loadable_module',
756 'dependencies': [ 762 'dependencies': [
757 'chromedriver2_lib', 763 'chromedriver2_lib',
(...skipping 2101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2859 'sync_integration_tests.isolate', 2865 'sync_integration_tests.isolate',
2860 ], 2866 ],
2861 'sources': [ 2867 'sources': [
2862 'sync_integration_tests.isolate', 2868 'sync_integration_tests.isolate',
2863 ], 2869 ],
2864 }, 2870 },
2865 ], 2871 ],
2866 }], 2872 }],
2867 ], # 'conditions' 2873 ], # 'conditions'
2868 } 2874 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/chromedriver/chrome.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698