diff options
author | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-22 21:00:48 +0000 |
---|---|---|
committer | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-22 21:00:48 +0000 |
commit | ca57825692d6af2d3425d2f37490b9255a058210 (patch) | |
tree | 32a26b64f059a579c767b37cabe7fb5b3fe498c8 /net/test | |
parent | 068ea4cad37cf0cfd309f5dd5f9623a9c590ae35 (diff) | |
download | chromium_src-ca57825692d6af2d3425d2f37490b9255a058210.zip chromium_src-ca57825692d6af2d3425d2f37490b9255a058210.tar.gz chromium_src-ca57825692d6af2d3425d2f37490b9255a058210.tar.bz2 |
Switching chrome to use python26 in place of python24.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/5121009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67000 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/test')
-rw-r--r-- | net/test/python_utils.cc | 2 | ||||
-rw-r--r-- | net/test/test_server_win.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/test/python_utils.cc b/net/test/python_utils.cc index 13438f7..0c61b48 100644 --- a/net/test/python_utils.cc +++ b/net/test/python_utils.cc @@ -70,7 +70,7 @@ bool GetPythonRunTime(FilePath* dir) { if (!PathService::Get(base::DIR_SOURCE_ROOT, dir)) return false; *dir = dir->Append(FILE_PATH_LITERAL("third_party")) - .Append(FILE_PATH_LITERAL("python_24")) + .Append(FILE_PATH_LITERAL("python_26")) .Append(FILE_PATH_LITERAL("python.exe")); #elif defined(OS_POSIX) *dir = FilePath("python"); diff --git a/net/test/test_server_win.cc b/net/test/test_server_win.cc index 64437cd..a363755 100644 --- a/net/test/test_server_win.cc +++ b/net/test/test_server_win.cc @@ -96,7 +96,7 @@ bool TestServer::LaunchPython(const FilePath& testserver_path) { return false; python_exe = python_exe .Append(FILE_PATH_LITERAL("third_party")) - .Append(FILE_PATH_LITERAL("python_24")) + .Append(FILE_PATH_LITERAL("python_26")) .Append(FILE_PATH_LITERAL("python.exe")); CommandLine python_command(python_exe); |