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 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
714 ], | 714 ], |
715 'include_dirs': [ | 715 'include_dirs': [ |
716 '..', | 716 '..', |
717 ], | 717 ], |
718 'sources': [ | 718 'sources': [ |
719 '../third_party/mongoose/mongoose.h', | 719 '../third_party/mongoose/mongoose.h', |
720 '../third_party/mongoose/mongoose.c', | 720 '../third_party/mongoose/mongoose.c', |
721 '../third_party/webdriver/atoms.h', | 721 '../third_party/webdriver/atoms.h', |
722 'test/webdriver/automation.h', | 722 'test/webdriver/automation.h', |
723 'test/webdriver/automation.cc', | 723 'test/webdriver/automation.cc', |
| 724 'test/webdriver/cookie.h', |
| 725 'test/webdriver/cookie.cc', |
724 'test/webdriver/dispatch.h', | 726 'test/webdriver/dispatch.h', |
725 'test/webdriver/dispatch.cc', | 727 'test/webdriver/dispatch.cc', |
726 'test/webdriver/error_codes.h', | 728 'test/webdriver/error_codes.h', |
727 'test/webdriver/keymap.h', | 729 'test/webdriver/keymap.h', |
728 'test/webdriver/keymap.cc', | 730 'test/webdriver/keymap.cc', |
729 'test/webdriver/server.cc', | 731 'test/webdriver/server.cc', |
730 'test/webdriver/session.h', | 732 'test/webdriver/session.h', |
731 'test/webdriver/session.cc', | 733 'test/webdriver/session.cc', |
732 'test/webdriver/session_manager.h', | 734 'test/webdriver/session_manager.h', |
733 'test/webdriver/session_manager.cc', | 735 'test/webdriver/session_manager.cc', |
734 'test/webdriver/utility_functions.h', | 736 'test/webdriver/utility_functions.h', |
735 'test/webdriver/utility_functions.cc', | 737 'test/webdriver/utility_functions.cc', |
736 'test/webdriver/commands/command.h', | 738 'test/webdriver/commands/command.h', |
737 'test/webdriver/commands/command.cc', | 739 'test/webdriver/commands/command.cc', |
| 740 'test/webdriver/commands/cookie_commands.h', |
| 741 'test/webdriver/commands/cookie_commands.cc', |
738 'test/webdriver/commands/create_session.h', | 742 'test/webdriver/commands/create_session.h', |
739 'test/webdriver/commands/create_session.cc', | 743 'test/webdriver/commands/create_session.cc', |
740 'test/webdriver/commands/find_element_commands.h', | 744 'test/webdriver/commands/find_element_commands.h', |
741 'test/webdriver/commands/find_element_commands.cc', | 745 'test/webdriver/commands/find_element_commands.cc', |
742 'test/webdriver/commands/implicit_wait_command.h', | 746 'test/webdriver/commands/implicit_wait_command.h', |
743 'test/webdriver/commands/implicit_wait_command.cc', | 747 'test/webdriver/commands/implicit_wait_command.cc', |
744 'test/webdriver/commands/execute_command.h', | 748 'test/webdriver/commands/execute_command.h', |
745 'test/webdriver/commands/execute_command.cc', | 749 'test/webdriver/commands/execute_command.cc', |
746 'test/webdriver/commands/navigate_commands.h', | 750 'test/webdriver/commands/navigate_commands.h', |
747 'test/webdriver/commands/navigate_commands.cc', | 751 'test/webdriver/commands/navigate_commands.cc', |
(...skipping 2941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3689 ] | 3693 ] |
3690 }], # 'coverage!=0' | 3694 }], # 'coverage!=0' |
3691 ], # 'conditions' | 3695 ], # 'conditions' |
3692 } | 3696 } |
3693 | 3697 |
3694 # Local Variables: | 3698 # Local Variables: |
3695 # tab-width:2 | 3699 # tab-width:2 |
3696 # indent-tabs-mode:nil | 3700 # indent-tabs-mode:nil |
3697 # End: | 3701 # End: |
3698 # vim: set expandtab tabstop=2 shiftwidth=2: | 3702 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |