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 '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 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 '../ui/ui.gyp:ui', | 881 '../ui/ui.gyp:ui', |
882 ], | 882 ], |
883 'include_dirs': [ | 883 'include_dirs': [ |
884 '..', | 884 '..', |
885 ], | 885 ], |
886 'sources': [ | 886 'sources': [ |
887 '../third_party/webdriver/atoms.cc', | 887 '../third_party/webdriver/atoms.cc', |
888 '../third_party/webdriver/atoms.h', | 888 '../third_party/webdriver/atoms.h', |
889 'test/chromedriver/basic_types.cc', | 889 'test/chromedriver/basic_types.cc', |
890 'test/chromedriver/basic_types.h', | 890 'test/chromedriver/basic_types.h', |
| 891 'test/chromedriver/capabilities_parser.cc', |
| 892 'test/chromedriver/capabilities_parser.h', |
891 'test/chromedriver/chrome_launcher.cc', | 893 'test/chromedriver/chrome_launcher.cc', |
892 'test/chromedriver/chrome_launcher.h', | 894 'test/chromedriver/chrome_launcher.h', |
893 'test/chromedriver/chromedriver.cc', | 895 'test/chromedriver/chromedriver.cc', |
894 'test/chromedriver/chromedriver.h', | 896 'test/chromedriver/chromedriver.h', |
895 'test/chromedriver/command.h', | 897 'test/chromedriver/command.h', |
896 'test/chromedriver/command_executor.h', | 898 'test/chromedriver/command_executor.h', |
897 'test/chromedriver/command_executor_impl.cc', | 899 'test/chromedriver/command_executor_impl.cc', |
898 'test/chromedriver/command_executor_impl.h', | 900 'test/chromedriver/command_executor_impl.h', |
899 'test/chromedriver/command_names.cc', | 901 'test/chromedriver/command_names.cc', |
900 'test/chromedriver/command_names.h', | 902 'test/chromedriver/command_names.h', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
983 'type': 'executable', | 985 'type': 'executable', |
984 'dependencies': [ | 986 'dependencies': [ |
985 'chromedriver2_lib', | 987 'chromedriver2_lib', |
986 'chromedriver2_server_lib', | 988 'chromedriver2_server_lib', |
987 '../base/base.gyp:base', | 989 '../base/base.gyp:base', |
988 '../base/base.gyp:run_all_unittests', | 990 '../base/base.gyp:run_all_unittests', |
989 '../testing/gtest.gyp:gtest', | 991 '../testing/gtest.gyp:gtest', |
990 '../ui/ui.gyp:ui', | 992 '../ui/ui.gyp:ui', |
991 ], | 993 ], |
992 'sources': [ | 994 'sources': [ |
| 995 'test/chromedriver/capabilities_parser_unittest.cc', |
993 'test/chromedriver/chrome/chrome_finder_unittest.cc', | 996 'test/chromedriver/chrome/chrome_finder_unittest.cc', |
994 'test/chromedriver/chrome/devtools_client_impl_unittest.cc', | 997 'test/chromedriver/chrome/devtools_client_impl_unittest.cc', |
995 'test/chromedriver/chrome/devtools_http_client_unittest.cc', | 998 'test/chromedriver/chrome/devtools_http_client_unittest.cc', |
996 'test/chromedriver/chrome/dom_tracker_unittest.cc', | 999 'test/chromedriver/chrome/dom_tracker_unittest.cc', |
997 'test/chromedriver/chrome/frame_tracker_unittest.cc', | 1000 'test/chromedriver/chrome/frame_tracker_unittest.cc', |
998 'test/chromedriver/chrome/geolocation_override_manager_unittest.cc', | 1001 'test/chromedriver/chrome/geolocation_override_manager_unittest.cc', |
999 'test/chromedriver/chrome/javascript_dialog_manager_unittest.cc', | 1002 'test/chromedriver/chrome/javascript_dialog_manager_unittest.cc', |
1000 'test/chromedriver/chrome/navigation_tracker_unittest.cc', | 1003 'test/chromedriver/chrome/navigation_tracker_unittest.cc', |
1001 'test/chromedriver/chrome/status_unittest.cc', | 1004 'test/chromedriver/chrome/status_unittest.cc', |
1002 'test/chromedriver/chrome/stub_chrome.cc', | 1005 'test/chromedriver/chrome/stub_chrome.cc', |
(...skipping 2258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3261 # more details. | 3264 # more details. |
3262 'DebugInformationFormat': '3', | 3265 'DebugInformationFormat': '3', |
3263 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 3266 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
3264 }, | 3267 }, |
3265 }, | 3268 }, |
3266 }, | 3269 }, |
3267 ], | 3270 ], |
3268 }], | 3271 }], |
3269 ], # 'conditions' | 3272 ], # 'conditions' |
3270 } | 3273 } |
OLD | NEW |