| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 # Configuration file for pyauto perf tests. | |
| 6 # This file is used to specify google account credentials and | |
| 7 # custom google account, gmail, docs, plus urls if you don't want to use | |
| 8 # the public urls of these services. It is formatted as a python dictionary. | |
| 9 | |
| 10 { | |
| 11 # Set to custom username/password if desired. | |
| 12 # If you are external to Google, you must set username/password. | |
| 13 # If you are internal to Google, you can leave them as None | |
| 14 # and tests will try to use internal credential file. | |
| 15 'username': None, | |
| 16 'password': None, | |
| 17 | |
| 18 # Set to custom Google account url if desired. | |
| 19 'google_account_url': None, # Defaults to 'https://accounts.google.com' | |
| 20 | |
| 21 # Set to custom Gmail/Plus/Docs urls if desired. | |
| 22 # Only effective for perf_endure.py | |
| 23 'gmail_url': None, # Defaults to 'https://www.gmail.com' | |
| 24 'plus_url': None, # Defaults to 'https://plus.google.com' | |
| 25 'docs_url': None, # Defaults to 'https://docs.google.com' | |
| 26 } | |
| OLD | NEW |