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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 ], | 705 ], |
706 'include_dirs': [ | 706 'include_dirs': [ |
707 '..', | 707 '..', |
708 ], | 708 ], |
709 'sources': [ | 709 'sources': [ |
710 '../third_party/mongoose/mongoose.h', | 710 '../third_party/mongoose/mongoose.h', |
711 '../third_party/mongoose/mongoose.c', | 711 '../third_party/mongoose/mongoose.c', |
712 '../third_party/webdriver/atoms.h', | 712 '../third_party/webdriver/atoms.h', |
713 'test/webdriver/automation.h', | 713 'test/webdriver/automation.h', |
714 'test/webdriver/automation.cc', | 714 'test/webdriver/automation.cc', |
| 715 'test/webdriver/cookie.h', |
| 716 'test/webdriver/cookie.cc', |
715 'test/webdriver/dispatch.h', | 717 'test/webdriver/dispatch.h', |
716 'test/webdriver/dispatch.cc', | 718 'test/webdriver/dispatch.cc', |
717 'test/webdriver/error_codes.h', | 719 'test/webdriver/error_codes.h', |
718 'test/webdriver/keymap.h', | 720 'test/webdriver/keymap.h', |
719 'test/webdriver/keymap.cc', | 721 'test/webdriver/keymap.cc', |
720 'test/webdriver/server.cc', | 722 'test/webdriver/server.cc', |
721 'test/webdriver/session.h', | 723 'test/webdriver/session.h', |
722 'test/webdriver/session.cc', | 724 'test/webdriver/session.cc', |
723 'test/webdriver/session_manager.h', | 725 'test/webdriver/session_manager.h', |
724 'test/webdriver/session_manager.cc', | 726 'test/webdriver/session_manager.cc', |
725 'test/webdriver/utility_functions.h', | 727 'test/webdriver/utility_functions.h', |
726 'test/webdriver/utility_functions.cc', | 728 'test/webdriver/utility_functions.cc', |
727 'test/webdriver/commands/command.h', | 729 'test/webdriver/commands/command.h', |
728 'test/webdriver/commands/command.cc', | 730 'test/webdriver/commands/command.cc', |
| 731 'test/webdriver/commands/cookie_commands.h', |
| 732 'test/webdriver/commands/cookie_commands.cc', |
729 'test/webdriver/commands/create_session.h', | 733 'test/webdriver/commands/create_session.h', |
730 'test/webdriver/commands/create_session.cc', | 734 'test/webdriver/commands/create_session.cc', |
731 'test/webdriver/commands/find_element_commands.h', | 735 'test/webdriver/commands/find_element_commands.h', |
732 'test/webdriver/commands/find_element_commands.cc', | 736 'test/webdriver/commands/find_element_commands.cc', |
733 'test/webdriver/commands/implicit_wait_command.h', | 737 'test/webdriver/commands/implicit_wait_command.h', |
734 'test/webdriver/commands/implicit_wait_command.cc', | 738 'test/webdriver/commands/implicit_wait_command.cc', |
735 'test/webdriver/commands/execute_command.h', | 739 'test/webdriver/commands/execute_command.h', |
736 'test/webdriver/commands/execute_command.cc', | 740 'test/webdriver/commands/execute_command.cc', |
737 'test/webdriver/commands/navigate_commands.h', | 741 'test/webdriver/commands/navigate_commands.h', |
738 'test/webdriver/commands/navigate_commands.cc', | 742 'test/webdriver/commands/navigate_commands.cc', |
(...skipping 2958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3697 ] | 3701 ] |
3698 }], # 'coverage!=0' | 3702 }], # 'coverage!=0' |
3699 ], # 'conditions' | 3703 ], # 'conditions' |
3700 } | 3704 } |
3701 | 3705 |
3702 # Local Variables: | 3706 # Local Variables: |
3703 # tab-width:2 | 3707 # tab-width:2 |
3704 # indent-tabs-mode:nil | 3708 # indent-tabs-mode:nil |
3705 # End: | 3709 # End: |
3706 # vim: set expandtab tabstop=2 shiftwidth=2: | 3710 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |