| OLD | NEW |
| 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 'chromedriver_unittest_sources': [ | 6 'chromedriver_unittest_sources': [ |
| 7 'test/chromedriver/capabilities_unittest.cc', | 7 'test/chromedriver/capabilities_unittest.cc', |
| 8 'test/chromedriver/chrome/chrome_finder_unittest.cc', | 8 'test/chromedriver/chrome/chrome_finder_unittest.cc', |
| 9 'test/chromedriver/chrome/console_logger_unittest.cc', | 9 'test/chromedriver/chrome/console_logger_unittest.cc', |
| 10 'test/chromedriver/chrome/device_manager_unittest.cc', | 10 'test/chromedriver/chrome/device_manager_unittest.cc', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 'test/chromedriver/chrome/stub_web_view.h', | 26 'test/chromedriver/chrome/stub_web_view.h', |
| 27 'test/chromedriver/chrome/web_view_impl_unittest.cc', | 27 'test/chromedriver/chrome/web_view_impl_unittest.cc', |
| 28 'test/chromedriver/chrome_launcher_unittest.cc', | 28 'test/chromedriver/chrome_launcher_unittest.cc', |
| 29 'test/chromedriver/commands_unittest.cc', | 29 'test/chromedriver/commands_unittest.cc', |
| 30 'test/chromedriver/logging_unittest.cc', | 30 'test/chromedriver/logging_unittest.cc', |
| 31 'test/chromedriver/server/http_handler_unittest.cc', | 31 'test/chromedriver/server/http_handler_unittest.cc', |
| 32 'test/chromedriver/session_commands_unittest.cc', | 32 'test/chromedriver/session_commands_unittest.cc', |
| 33 'test/chromedriver/session_unittest.cc', | 33 'test/chromedriver/session_unittest.cc', |
| 34 'test/chromedriver/util_unittest.cc', | 34 'test/chromedriver/util_unittest.cc', |
| 35 ], | 35 ], |
| 36 'chromedriver_test_sources': [ | |
| 37 'test/chromedriver/key_converter_unittest.cc', | |
| 38 'test/chromedriver/keycode_text_conversion_unittest.cc', | |
| 39 'test/chromedriver/net/net_util_unittest.cc', | |
| 40 'test/chromedriver/net/port_server_unittest.cc', | |
| 41 'test/chromedriver/net/sync_websocket_impl_unittest.cc', | |
| 42 'test/chromedriver/net/test_http_server.cc', | |
| 43 'test/chromedriver/net/test_http_server.h', | |
| 44 'test/chromedriver/net/websocket_unittest.cc', | |
| 45 'test/chromedriver/test_util.cc', | |
| 46 'test/chromedriver/test_util.h', | |
| 47 ], | |
| 48 'pyautolib_sources': [ | 36 'pyautolib_sources': [ |
| 49 'app/chrome_command_ids.h', | 37 'app/chrome_command_ids.h', |
| 50 'app/chrome_dll_resource.h', | 38 'app/chrome_dll_resource.h', |
| 51 'common/automation_constants.h', | 39 'common/automation_constants.h', |
| 52 'common/pref_names.cc', | 40 'common/pref_names.cc', |
| 53 'common/pref_names.h', | 41 'common/pref_names.h', |
| 54 'test/automation/browser_proxy.cc', | 42 'test/automation/browser_proxy.cc', |
| 55 'test/automation/browser_proxy.h', | 43 'test/automation/browser_proxy.h', |
| 56 'test/automation/tab_proxy.cc', | 44 'test/automation/tab_proxy.cc', |
| 57 'test/automation/tab_proxy.h', | 45 'test/automation/tab_proxy.h', |
| (...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 '../net/net.gyp:http_server', | 878 '../net/net.gyp:http_server', |
| 891 '../net/net.gyp:net', | 879 '../net/net.gyp:net', |
| 892 '../net/net.gyp:net_test_support', | 880 '../net/net.gyp:net_test_support', |
| 893 '../testing/gtest.gyp:gtest', | 881 '../testing/gtest.gyp:gtest', |
| 894 '../url/url.gyp:url_lib', | 882 '../url/url.gyp:url_lib', |
| 895 ], | 883 ], |
| 896 'include_dirs': [ | 884 'include_dirs': [ |
| 897 '..,' | 885 '..,' |
| 898 ], | 886 ], |
| 899 'sources': [ | 887 'sources': [ |
| 900 '<@(chromedriver_test_sources)', | 888 'test/chromedriver/key_converter_unittest.cc', |
| 889 'test/chromedriver/keycode_text_conversion_unittest.cc', |
| 890 'test/chromedriver/net/net_util_unittest.cc', |
| 891 'test/chromedriver/net/port_server_unittest.cc', |
| 892 'test/chromedriver/net/sync_websocket_impl_unittest.cc', |
| 893 'test/chromedriver/net/test_http_server.cc', |
| 894 'test/chromedriver/net/test_http_server.h', |
| 895 'test/chromedriver/net/websocket_unittest.cc', |
| 896 'test/chromedriver/test_util.cc', |
| 897 'test/chromedriver/test_util.h', |
| 901 ], | 898 ], |
| 902 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 899 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 903 'msvs_disabled_warnings': [ 4267, ], | 900 'msvs_disabled_warnings': [ 4267, ], |
| 904 }, | |
| 905 # TODO(kkania): Remove when infra no longer references this. | |
| 906 { | |
| 907 'target_name': 'chromedriver2_tests', | |
| 908 'type': 'executable', | |
| 909 'dependencies': [ | |
| 910 'chromedriver_lib', | |
| 911 '../base/base.gyp:base', | |
| 912 '../base/base.gyp:run_all_unittests', | |
| 913 '../net/net.gyp:http_server', | |
| 914 '../net/net.gyp:net', | |
| 915 '../net/net.gyp:net_test_support', | |
| 916 '../testing/gtest.gyp:gtest', | |
| 917 '../url/url.gyp:url_lib', | |
| 918 ], | |
| 919 'include_dirs': [ | |
| 920 '..,' | |
| 921 ], | |
| 922 'sources': [ | |
| 923 '<@(chromedriver_test_sources)', | |
| 924 ], | |
| 925 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
| 926 'msvs_disabled_warnings': [ 4267, ], | |
| 927 }, | 901 }, |
| 928 { | 902 { |
| 929 # Executable that runs each browser test in a new process. | 903 # Executable that runs each browser test in a new process. |
| 930 'target_name': 'browser_tests', | 904 'target_name': 'browser_tests', |
| 931 'type': 'executable', | 905 'type': 'executable', |
| 932 'msvs_cygwin_shell': 0, | 906 'msvs_cygwin_shell': 0, |
| 933 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], | 907 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], |
| 934 'dependencies': [ | 908 'dependencies': [ |
| 935 'browser', | 909 'browser', |
| 936 'chrome_resources.gyp:chrome_resources', | 910 'chrome_resources.gyp:chrome_resources', |
| (...skipping 2326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3263 'utility', | 3237 'utility', |
| 3264 ], | 3238 ], |
| 3265 'sources': [ | 3239 'sources': [ |
| 3266 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3240 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
| 3267 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3241 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
| 3268 ], | 3242 ], |
| 3269 }] | 3243 }] |
| 3270 }], | 3244 }], |
| 3271 ], # 'conditions' | 3245 ], # 'conditions' |
| 3272 } | 3246 } |
| OLD | NEW |