Chromium Code Reviews| Index: build/android/pylib/constants.py |
| diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py |
| index ea148e7358669f3343fdae31624d6d96c2e96e8c..8243829cce91c5cc02d97ddcc23b3142e8ffb527 100644 |
| --- a/build/android/pylib/constants.py |
| +++ b/build/android/pylib/constants.py |
| @@ -87,8 +87,13 @@ PACKAGE_INFO = { |
| LIGHTTPD_DEFAULT_PORT = 9000 |
| LIGHTTPD_RANDOM_PORT_FIRST = 8001 |
| LIGHTTPD_RANDOM_PORT_LAST = 8999 |
| -TEST_SYNC_SERVER_PORT = 9031 |
| TEST_SEARCH_BY_IMAGE_SERVER_PORT = 9041 |
| +TEST_SYNC_SERVER_PORT = 9031 |
| +TEST_SERVER_HOST = '127.0.0.1' |
| + |
| +# Paths for various test server executables. |
| +TEST_NET_SERVER_PATH = 'net/tools/testserver/testserver.py' |
| +TEST_SYNC_SERVER_PATH = 'sync/tools/testserver/sync_testserver.py' |
|
frankf
2013/08/30 18:22:43
So these constants only needed to be used by modul
nyquist
2013/08/30 21:50:59
Done. Also reverted my other change to this patch.
|
| # The net test server is started from port 10201. |
| # TODO(pliard): http://crbug.com/239014. Remove this dirty workaround once |