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 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 '../ui/ui.gyp:ui', | 907 '../ui/ui.gyp:ui', |
908 ], | 908 ], |
909 'include_dirs': [ | 909 'include_dirs': [ |
910 '..', | 910 '..', |
911 ], | 911 ], |
912 'sources': [ | 912 'sources': [ |
913 '../third_party/webdriver/atoms.cc', | 913 '../third_party/webdriver/atoms.cc', |
914 '../third_party/webdriver/atoms.h', | 914 '../third_party/webdriver/atoms.h', |
915 'test/chromedriver/basic_types.cc', | 915 'test/chromedriver/basic_types.cc', |
916 'test/chromedriver/basic_types.h', | 916 'test/chromedriver/basic_types.h', |
| 917 'test/chromedriver/capabilities.cc', |
| 918 'test/chromedriver/capabilities.h', |
917 'test/chromedriver/chrome_launcher.cc', | 919 'test/chromedriver/chrome_launcher.cc', |
918 'test/chromedriver/chrome_launcher.h', | 920 'test/chromedriver/chrome_launcher.h', |
919 'test/chromedriver/chromedriver.cc', | 921 'test/chromedriver/chromedriver.cc', |
920 'test/chromedriver/chromedriver.h', | 922 'test/chromedriver/chromedriver.h', |
921 'test/chromedriver/command.h', | 923 'test/chromedriver/command.h', |
922 'test/chromedriver/command_executor.h', | 924 'test/chromedriver/command_executor.h', |
923 'test/chromedriver/command_executor_impl.cc', | 925 'test/chromedriver/command_executor_impl.cc', |
924 'test/chromedriver/command_executor_impl.h', | 926 'test/chromedriver/command_executor_impl.h', |
925 'test/chromedriver/command_names.cc', | 927 'test/chromedriver/command_names.cc', |
926 'test/chromedriver/command_names.h', | 928 'test/chromedriver/command_names.h', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1009 'type': 'executable', | 1011 'type': 'executable', |
1010 'dependencies': [ | 1012 'dependencies': [ |
1011 'chromedriver2_lib', | 1013 'chromedriver2_lib', |
1012 'chromedriver2_server_lib', | 1014 'chromedriver2_server_lib', |
1013 '../base/base.gyp:base', | 1015 '../base/base.gyp:base', |
1014 '../base/base.gyp:run_all_unittests', | 1016 '../base/base.gyp:run_all_unittests', |
1015 '../testing/gtest.gyp:gtest', | 1017 '../testing/gtest.gyp:gtest', |
1016 '../ui/ui.gyp:ui', | 1018 '../ui/ui.gyp:ui', |
1017 ], | 1019 ], |
1018 'sources': [ | 1020 'sources': [ |
| 1021 'test/chromedriver/capabilities_unittest.cc', |
1019 'test/chromedriver/chrome/chrome_finder_unittest.cc', | 1022 'test/chromedriver/chrome/chrome_finder_unittest.cc', |
1020 'test/chromedriver/chrome/devtools_client_impl_unittest.cc', | 1023 'test/chromedriver/chrome/devtools_client_impl_unittest.cc', |
1021 'test/chromedriver/chrome/devtools_http_client_unittest.cc', | 1024 'test/chromedriver/chrome/devtools_http_client_unittest.cc', |
1022 'test/chromedriver/chrome/dom_tracker_unittest.cc', | 1025 'test/chromedriver/chrome/dom_tracker_unittest.cc', |
1023 'test/chromedriver/chrome/frame_tracker_unittest.cc', | 1026 'test/chromedriver/chrome/frame_tracker_unittest.cc', |
1024 'test/chromedriver/chrome/geolocation_override_manager_unittest.cc', | 1027 'test/chromedriver/chrome/geolocation_override_manager_unittest.cc', |
1025 'test/chromedriver/chrome/javascript_dialog_manager_unittest.cc', | 1028 'test/chromedriver/chrome/javascript_dialog_manager_unittest.cc', |
1026 'test/chromedriver/chrome/navigation_tracker_unittest.cc', | 1029 'test/chromedriver/chrome/navigation_tracker_unittest.cc', |
1027 'test/chromedriver/chrome/status_unittest.cc', | 1030 'test/chromedriver/chrome/status_unittest.cc', |
1028 'test/chromedriver/chrome/stub_chrome.cc', | 1031 'test/chromedriver/chrome/stub_chrome.cc', |
(...skipping 2258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3287 # more details. | 3290 # more details. |
3288 'DebugInformationFormat': '3', | 3291 'DebugInformationFormat': '3', |
3289 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 3292 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
3290 }, | 3293 }, |
3291 }, | 3294 }, |
3292 }, | 3295 }, |
3293 ], | 3296 ], |
3294 }], | 3297 }], |
3295 ], # 'conditions' | 3298 ], # 'conditions' |
3296 } | 3299 } |
OLD | NEW |