 Chromium Code Reviews
 Chromium Code Reviews Issue 6532068:
  Fix a bug in ImplicitWaitCommand: we must explicitly check if the ms param...  (Closed) 
  Base URL: http://src.chromium.org/svn/trunk/src/
    
  
    Issue 6532068:
  Fix a bug in ImplicitWaitCommand: we must explicitly check if the ms param...  (Closed) 
  Base URL: http://src.chromium.org/svn/trunk/src/| 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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 857 ], | 857 ], | 
| 858 'include_dirs': [ | 858 'include_dirs': [ | 
| 859 '..', | 859 '..', | 
| 860 ], | 860 ], | 
| 861 'sources': [ | 861 'sources': [ | 
| 862 '../base/test/run_all_unittests.cc', | 862 '../base/test/run_all_unittests.cc', | 
| 863 'test/webdriver/dispatch_unittest.cc', | 863 'test/webdriver/dispatch_unittest.cc', | 
| 864 'test/webdriver/http_response_unittest.cc', | 864 'test/webdriver/http_response_unittest.cc', | 
| 865 'test/webdriver/utility_functions_unittest.cc', | 865 'test/webdriver/utility_functions_unittest.cc', | 
| 866 'test/webdriver/webdriver_key_converter_unittest.cc', | 866 'test/webdriver/webdriver_key_converter_unittest.cc', | 
| 867 'test/webdriver/commands/implicit_wait_command_unittest.cc', | |
| 
Paweł Hajdan Jr.
2011/02/19 11:49:18
nit: Preserve alphabetical order.
 | |
| 867 ], | 868 ], | 
| 868 'conditions': [ | 869 'conditions': [ | 
| 869 ['OS=="win"', { | 870 ['OS=="win"', { | 
| 870 'conditions': [ | 871 'conditions': [ | 
| 871 ['win_use_allocator_shim==1', { | 872 ['win_use_allocator_shim==1', { | 
| 872 'dependencies': [ | 873 'dependencies': [ | 
| 873 '<(allocator_target)', | 874 '<(allocator_target)', | 
| 874 ], | 875 ], | 
| 875 }], | 876 }], | 
| 876 ], | 877 ], | 
| (...skipping 2895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3772 ] | 3773 ] | 
| 3773 }], # 'coverage!=0' | 3774 }], # 'coverage!=0' | 
| 3774 ], # 'conditions' | 3775 ], # 'conditions' | 
| 3775 } | 3776 } | 
| 3776 | 3777 | 
| 3777 # Local Variables: | 3778 # Local Variables: | 
| 3778 # tab-width:2 | 3779 # tab-width:2 | 
| 3779 # indent-tabs-mode:nil | 3780 # indent-tabs-mode:nil | 
| 3780 # End: | 3781 # End: | 
| 3781 # vim: set expandtab tabstop=2 shiftwidth=2: | 3782 # vim: set expandtab tabstop=2 shiftwidth=2: | 
| OLD | NEW |