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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 8341044: Enhance and refactor ChromeDriver's capability handling. Log warning for (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 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
« no previous file with comments | « no previous file | chrome/test/webdriver/commands/create_session.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'variables' : { 6 'variables' : {
7 'pyautolib_sources': [ 7 'pyautolib_sources': [
8 'app/chrome_command_ids.h', 8 'app/chrome_command_ids.h',
9 'app/chrome_dll_resource.h', 9 'app/chrome_dll_resource.h',
10 'common/automation_constants.h', 10 'common/automation_constants.h',
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 'test/webdriver/http_response.cc', 921 'test/webdriver/http_response.cc',
922 'test/webdriver/http_response.h', 922 'test/webdriver/http_response.h',
923 'test/webdriver/keycode_text_conversion.h', 923 'test/webdriver/keycode_text_conversion.h',
924 'test/webdriver/keycode_text_conversion_linux.cc', 924 'test/webdriver/keycode_text_conversion_linux.cc',
925 'test/webdriver/keycode_text_conversion_mac.mm', 925 'test/webdriver/keycode_text_conversion_mac.mm',
926 'test/webdriver/keycode_text_conversion_win.cc', 926 'test/webdriver/keycode_text_conversion_win.cc',
927 'test/webdriver/webdriver_automation.cc', 927 'test/webdriver/webdriver_automation.cc',
928 'test/webdriver/webdriver_automation.h', 928 'test/webdriver/webdriver_automation.h',
929 'test/webdriver/webdriver_basic_types.cc', 929 'test/webdriver/webdriver_basic_types.cc',
930 'test/webdriver/webdriver_basic_types.h', 930 'test/webdriver/webdriver_basic_types.h',
931 'test/webdriver/webdriver_capabilities_parser.cc',
932 'test/webdriver/webdriver_capabilities_parser.h',
931 'test/webdriver/webdriver_dispatch.cc', 933 'test/webdriver/webdriver_dispatch.cc',
932 'test/webdriver/webdriver_dispatch.h', 934 'test/webdriver/webdriver_dispatch.h',
933 'test/webdriver/webdriver_element_id.cc', 935 'test/webdriver/webdriver_element_id.cc',
934 'test/webdriver/webdriver_element_id.h', 936 'test/webdriver/webdriver_element_id.h',
935 'test/webdriver/webdriver_error.cc', 937 'test/webdriver/webdriver_error.cc',
936 'test/webdriver/webdriver_error.h', 938 'test/webdriver/webdriver_error.h',
937 'test/webdriver/webdriver_key_converter.cc', 939 'test/webdriver/webdriver_key_converter.cc',
938 'test/webdriver/webdriver_key_converter.h', 940 'test/webdriver/webdriver_key_converter.h',
939 'test/webdriver/webdriver_logging.cc', 941 'test/webdriver/webdriver_logging.cc',
940 'test/webdriver/webdriver_logging.h', 942 'test/webdriver/webdriver_logging.h',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
1022 ], 1024 ],
1023 'include_dirs': [ 1025 'include_dirs': [
1024 '..', 1026 '..',
1025 ], 1027 ],
1026 'sources': [ 1028 'sources': [
1027 '../base/test/run_all_unittests.cc', 1029 '../base/test/run_all_unittests.cc',
1028 'test/webdriver/commands/set_timeout_commands_unittest.cc', 1030 'test/webdriver/commands/set_timeout_commands_unittest.cc',
1029 'test/webdriver/frame_path_unittest.cc', 1031 'test/webdriver/frame_path_unittest.cc',
1030 'test/webdriver/http_response_unittest.cc', 1032 'test/webdriver/http_response_unittest.cc',
1031 'test/webdriver/keycode_text_conversion_unittest.cc', 1033 'test/webdriver/keycode_text_conversion_unittest.cc',
1034 'test/webdriver/webdriver_capabilities_parser_unittest.cc',
1032 'test/webdriver/webdriver_dispatch_unittest.cc', 1035 'test/webdriver/webdriver_dispatch_unittest.cc',
1033 'test/webdriver/webdriver_key_converter_unittest.cc', 1036 'test/webdriver/webdriver_key_converter_unittest.cc',
1034 'test/webdriver/webdriver_test_util.cc', 1037 'test/webdriver/webdriver_test_util.cc',
1035 'test/webdriver/webdriver_test_util.h', 1038 'test/webdriver/webdriver_test_util.h',
1036 'test/webdriver/webdriver_util_unittest.cc', 1039 'test/webdriver/webdriver_util_unittest.cc',
1037 ], 1040 ],
1038 'conditions': [ 1041 'conditions': [
1039 ['OS=="win"', { 1042 ['OS=="win"', {
1040 'conditions': [ 1043 'conditions': [
1041 ['win_use_allocator_shim==1', { 1044 ['win_use_allocator_shim==1', {
(...skipping 3058 matching lines...) Expand 10 before | Expand all | Expand 10 after
4100 # Use outputs of this action as inputs for the main target build. 4103 # Use outputs of this action as inputs for the main target build.
4101 # Seems as a misnomer but makes this happy on Linux (scons). 4104 # Seems as a misnomer but makes this happy on Linux (scons).
4102 'process_outputs_as_sources': 1, 4105 'process_outputs_as_sources': 1,
4103 }, 4106 },
4104 ], # 'actions' 4107 ], # 'actions'
4105 }, 4108 },
4106 ] 4109 ]
4107 }], # 'coverage!=0' 4110 }], # 'coverage!=0'
4108 ], # 'conditions' 4111 ], # 'conditions'
4109 } 4112 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/webdriver/commands/create_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698