OLD | NEW |
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 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 ], | 717 ], |
718 'include_dirs': [ | 718 'include_dirs': [ |
719 '..', | 719 '..', |
720 ], | 720 ], |
721 'sources': [ | 721 'sources': [ |
722 '../third_party/mongoose/mongoose.h', | 722 '../third_party/mongoose/mongoose.h', |
723 '../third_party/mongoose/mongoose.c', | 723 '../third_party/mongoose/mongoose.c', |
724 '../third_party/webdriver/atoms.h', | 724 '../third_party/webdriver/atoms.h', |
725 'test/webdriver/automation.h', | 725 'test/webdriver/automation.h', |
726 'test/webdriver/automation.cc', | 726 'test/webdriver/automation.cc', |
| 727 'test/webdriver/cookie.h', |
| 728 'test/webdriver/cookie.cc', |
727 'test/webdriver/dispatch.h', | 729 'test/webdriver/dispatch.h', |
728 'test/webdriver/dispatch.cc', | 730 'test/webdriver/dispatch.cc', |
729 'test/webdriver/error_codes.h', | 731 'test/webdriver/error_codes.h', |
730 'test/webdriver/keymap.h', | 732 'test/webdriver/keymap.h', |
731 'test/webdriver/keymap.cc', | 733 'test/webdriver/keymap.cc', |
732 'test/webdriver/session.h', | 734 'test/webdriver/session.h', |
733 'test/webdriver/session.cc', | 735 'test/webdriver/session.cc', |
734 'test/webdriver/session_manager.h', | 736 'test/webdriver/session_manager.h', |
735 'test/webdriver/session_manager.cc', | 737 'test/webdriver/session_manager.cc', |
736 'test/webdriver/utility_functions.h', | 738 'test/webdriver/utility_functions.h', |
737 'test/webdriver/utility_functions.cc', | 739 'test/webdriver/utility_functions.cc', |
738 'test/webdriver/commands/command.h', | 740 'test/webdriver/commands/command.h', |
739 'test/webdriver/commands/command.cc', | 741 'test/webdriver/commands/command.cc', |
| 742 'test/webdriver/commands/cookie_commands.h', |
| 743 'test/webdriver/commands/cookie_commands.cc', |
740 'test/webdriver/commands/create_session.h', | 744 'test/webdriver/commands/create_session.h', |
741 'test/webdriver/commands/create_session.cc', | 745 'test/webdriver/commands/create_session.cc', |
742 'test/webdriver/commands/find_element_commands.h', | 746 'test/webdriver/commands/find_element_commands.h', |
743 'test/webdriver/commands/find_element_commands.cc', | 747 'test/webdriver/commands/find_element_commands.cc', |
744 'test/webdriver/commands/implicit_wait_command.h', | 748 'test/webdriver/commands/implicit_wait_command.h', |
745 'test/webdriver/commands/implicit_wait_command.cc', | 749 'test/webdriver/commands/implicit_wait_command.cc', |
746 'test/webdriver/commands/execute_command.h', | 750 'test/webdriver/commands/execute_command.h', |
747 'test/webdriver/commands/execute_command.cc', | 751 'test/webdriver/commands/execute_command.cc', |
748 'test/webdriver/commands/navigate_commands.h', | 752 'test/webdriver/commands/navigate_commands.h', |
749 'test/webdriver/commands/navigate_commands.cc', | 753 'test/webdriver/commands/navigate_commands.cc', |
(...skipping 3008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3758 ] | 3762 ] |
3759 }], # 'coverage!=0' | 3763 }], # 'coverage!=0' |
3760 ], # 'conditions' | 3764 ], # 'conditions' |
3761 } | 3765 } |
3762 | 3766 |
3763 # Local Variables: | 3767 # Local Variables: |
3764 # tab-width:2 | 3768 # tab-width:2 |
3765 # indent-tabs-mode:nil | 3769 # indent-tabs-mode:nil |
3766 # End: | 3770 # End: |
3767 # vim: set expandtab tabstop=2 shiftwidth=2: | 3771 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |