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 19616008: [chromedriver] Allow commands to be async. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years, 5 months 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/README.txt » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 956 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 'test/chromedriver/keycode_text_conversion.h', 967 'test/chromedriver/keycode_text_conversion.h',
968 'test/chromedriver/keycode_text_conversion_mac.mm', 968 'test/chromedriver/keycode_text_conversion_mac.mm',
969 'test/chromedriver/keycode_text_conversion_win.cc', 969 'test/chromedriver/keycode_text_conversion_win.cc',
970 'test/chromedriver/keycode_text_conversion_x.cc', 970 'test/chromedriver/keycode_text_conversion_x.cc',
971 'test/chromedriver/logging.cc', 971 'test/chromedriver/logging.cc',
972 'test/chromedriver/logging.h', 972 'test/chromedriver/logging.h',
973 'test/chromedriver/session.cc', 973 'test/chromedriver/session.cc',
974 'test/chromedriver/session.h', 974 'test/chromedriver/session.h',
975 'test/chromedriver/session_commands.cc', 975 'test/chromedriver/session_commands.cc',
976 'test/chromedriver/session_commands.h', 976 'test/chromedriver/session_commands.h',
977 'test/chromedriver/session_map.h', 977 'test/chromedriver/session_thread_map.h',
978 'test/chromedriver/synchronized_map.h',
979 'test/chromedriver/util.cc', 978 'test/chromedriver/util.cc',
980 'test/chromedriver/util.h', 979 'test/chromedriver/util.h',
981 'test/chromedriver/window_commands.cc', 980 'test/chromedriver/window_commands.cc',
982 'test/chromedriver/window_commands.h', 981 'test/chromedriver/window_commands.h',
983 ], 982 ],
984 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 983 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
985 'msvs_disabled_warnings': [ 4267, ], 984 'msvs_disabled_warnings': [ 4267, ],
986 }, 985 },
987 { 986 {
988 'target_name': 'chromedriver2_server_lib', 987 'target_name': 'chromedriver2_server_lib',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 'test/chromedriver/chrome/status_unittest.cc', 1051 'test/chromedriver/chrome/status_unittest.cc',
1053 'test/chromedriver/chrome/stub_chrome.cc', 1052 'test/chromedriver/chrome/stub_chrome.cc',
1054 'test/chromedriver/chrome/stub_chrome.h', 1053 'test/chromedriver/chrome/stub_chrome.h',
1055 'test/chromedriver/chrome/stub_devtools_client.cc', 1054 'test/chromedriver/chrome/stub_devtools_client.cc',
1056 'test/chromedriver/chrome/stub_devtools_client.h', 1055 'test/chromedriver/chrome/stub_devtools_client.h',
1057 'test/chromedriver/chrome/stub_web_view.cc', 1056 'test/chromedriver/chrome/stub_web_view.cc',
1058 'test/chromedriver/chrome/stub_web_view.h', 1057 'test/chromedriver/chrome/stub_web_view.h',
1059 'test/chromedriver/chrome/web_view_impl_unittest.cc', 1058 'test/chromedriver/chrome/web_view_impl_unittest.cc',
1060 'test/chromedriver/chrome_launcher_unittest.cc', 1059 'test/chromedriver/chrome_launcher_unittest.cc',
1061 'test/chromedriver/commands_unittest.cc', 1060 'test/chromedriver/commands_unittest.cc',
1062 'test/chromedriver/fake_session_accessor.cc',
1063 'test/chromedriver/fake_session_accessor.h',
1064 'test/chromedriver/logging_unittest.cc', 1061 'test/chromedriver/logging_unittest.cc',
1065 'test/chromedriver/server/http_handler_unittest.cc', 1062 'test/chromedriver/server/http_handler_unittest.cc',
1066 'test/chromedriver/server/http_response_unittest.cc', 1063 'test/chromedriver/server/http_response_unittest.cc',
1067 'test/chromedriver/session_commands_unittest.cc', 1064 'test/chromedriver/session_commands_unittest.cc',
1068 'test/chromedriver/session_unittest.cc', 1065 'test/chromedriver/session_unittest.cc',
1069 'test/chromedriver/synchronized_map_unittest.cc',
1070 'test/chromedriver/util_unittest.cc', 1066 'test/chromedriver/util_unittest.cc',
1071 ], 1067 ],
1072 'conditions': [ 1068 'conditions': [
1073 # See http://crbug.com/162998#c4 for why this is needed. 1069 # See http://crbug.com/162998#c4 for why this is needed.
1074 ['OS=="linux" and linux_use_tcmalloc==1', { 1070 ['OS=="linux" and linux_use_tcmalloc==1', {
1075 'dependencies': [ 1071 'dependencies': [
1076 '../base/allocator/allocator.gyp:allocator', 1072 '../base/allocator/allocator.gyp:allocator',
1077 ], 1073 ],
1078 }], 1074 }],
1079 ], 1075 ],
(...skipping 2316 matching lines...) Expand 10 before | Expand all | Expand 10 after
3396 'utility', 3392 'utility',
3397 ], 3393 ],
3398 'sources': [ 3394 'sources': [
3399 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3395 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3400 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3396 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3401 ], 3397 ],
3402 }] 3398 }]
3403 }], 3399 }],
3404 ], # 'conditions' 3400 ], # 'conditions'
3405 } 3401 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/chromedriver/README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698