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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 ], | 722 ], |
723 'include_dirs': [ | 723 'include_dirs': [ |
724 '..', | 724 '..', |
725 ], | 725 ], |
726 'sources': [ | 726 'sources': [ |
727 '../third_party/mongoose/mongoose.h', | 727 '../third_party/mongoose/mongoose.h', |
728 '../third_party/mongoose/mongoose.c', | 728 '../third_party/mongoose/mongoose.c', |
729 '../third_party/webdriver/atoms.h', | 729 '../third_party/webdriver/atoms.h', |
730 'test/webdriver/automation.h', | 730 'test/webdriver/automation.h', |
731 'test/webdriver/automation.cc', | 731 'test/webdriver/automation.cc', |
| 732 'test/webdriver/cookie.h', |
| 733 'test/webdriver/cookie.cc', |
732 'test/webdriver/dispatch.h', | 734 'test/webdriver/dispatch.h', |
733 'test/webdriver/dispatch.cc', | 735 'test/webdriver/dispatch.cc', |
734 'test/webdriver/error_codes.h', | 736 'test/webdriver/error_codes.h', |
735 'test/webdriver/http_response.h', | 737 'test/webdriver/http_response.h', |
736 'test/webdriver/http_response.cc', | 738 'test/webdriver/http_response.cc', |
737 'test/webdriver/keymap.h', | 739 'test/webdriver/keymap.h', |
738 'test/webdriver/keymap.cc', | 740 'test/webdriver/keymap.cc', |
739 'test/webdriver/session.h', | 741 'test/webdriver/session.h', |
740 'test/webdriver/session.cc', | 742 'test/webdriver/session.cc', |
741 'test/webdriver/session_manager.h', | 743 'test/webdriver/session_manager.h', |
742 'test/webdriver/session_manager.cc', | 744 'test/webdriver/session_manager.cc', |
743 'test/webdriver/utility_functions.h', | 745 'test/webdriver/utility_functions.h', |
744 'test/webdriver/utility_functions.cc', | 746 'test/webdriver/utility_functions.cc', |
745 'test/webdriver/webdriver_key_converter.h', | 747 'test/webdriver/webdriver_key_converter.h', |
746 'test/webdriver/webdriver_key_converter.cc', | 748 'test/webdriver/webdriver_key_converter.cc', |
747 'test/webdriver/commands/command.h', | 749 'test/webdriver/commands/command.h', |
748 'test/webdriver/commands/command.cc', | 750 'test/webdriver/commands/command.cc', |
| 751 'test/webdriver/commands/cookie_commands.h', |
| 752 'test/webdriver/commands/cookie_commands.cc', |
749 'test/webdriver/commands/create_session.h', | 753 'test/webdriver/commands/create_session.h', |
750 'test/webdriver/commands/create_session.cc', | 754 'test/webdriver/commands/create_session.cc', |
751 'test/webdriver/commands/find_element_commands.h', | 755 'test/webdriver/commands/find_element_commands.h', |
752 'test/webdriver/commands/find_element_commands.cc', | 756 'test/webdriver/commands/find_element_commands.cc', |
753 'test/webdriver/commands/implicit_wait_command.h', | 757 'test/webdriver/commands/implicit_wait_command.h', |
754 'test/webdriver/commands/implicit_wait_command.cc', | 758 'test/webdriver/commands/implicit_wait_command.cc', |
755 'test/webdriver/commands/execute_command.h', | 759 'test/webdriver/commands/execute_command.h', |
756 'test/webdriver/commands/execute_command.cc', | 760 'test/webdriver/commands/execute_command.cc', |
757 'test/webdriver/commands/navigate_commands.h', | 761 'test/webdriver/commands/navigate_commands.h', |
758 'test/webdriver/commands/navigate_commands.cc', | 762 'test/webdriver/commands/navigate_commands.cc', |
(...skipping 3014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3773 ] | 3777 ] |
3774 }], # 'coverage!=0' | 3778 }], # 'coverage!=0' |
3775 ], # 'conditions' | 3779 ], # 'conditions' |
3776 } | 3780 } |
3777 | 3781 |
3778 # Local Variables: | 3782 # Local Variables: |
3779 # tab-width:2 | 3783 # tab-width:2 |
3780 # indent-tabs-mode:nil | 3784 # indent-tabs-mode:nil |
3781 # End: | 3785 # End: |
3782 # vim: set expandtab tabstop=2 shiftwidth=2: | 3786 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |