Chromium Code Reviews| 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 #include "net/test/python_utils.h" | 5 #include "net/test/python_utils.h" |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/environment.h" | 9 #include "base/environment.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 100 generated_code_dir = *dir; | 100 generated_code_dir = *dir; |
| 101 #endif | 101 #endif |
| 102 *dir = generated_code_dir.Append(kPyProto); | 102 *dir = generated_code_dir.Append(kPyProto); |
| 103 VLOG(2) << "Found " << kPyProto.value() << " in " << dir->value(); | 103 VLOG(2) << "Found " << kPyProto.value() << " in " << dir->value(); |
| 104 return true; | 104 return true; |
| 105 } | 105 } |
| 106 | 106 |
| 107 bool GetPythonCommand(CommandLine* python_cmd) { | 107 bool GetPythonCommand(CommandLine* python_cmd) { |
| 108 DCHECK(python_cmd); | 108 DCHECK(python_cmd); |
| 109 base::FilePath dir; | 109 base::FilePath dir; |
| 110 #if defined(OS_WIN) | 110 dir = base::FilePath(FILE_PATH_LITERAL("python")); |
| 111 if (!PathService::Get(base::DIR_SOURCE_ROOT, &dir)) | |
| 112 return false; | |
| 113 dir = dir.Append(FILE_PATH_LITERAL("third_party")) | |
| 114 .Append(FILE_PATH_LITERAL("python_26")) | |
| 115 .Append(FILE_PATH_LITERAL("python.exe")); | |
| 116 #elif defined(OS_POSIX) | |
| 117 dir = base::FilePath("python"); | |
| 118 #endif | |
| 119 | 111 |
| 120 python_cmd->SetProgram(dir); | 112 python_cmd->SetProgram(dir); |
|
Paweł Hajdan Jr.
2013/08/19 19:16:56
nit: If it fits, just put FILE_PATH_LITERAL("pytho
| |
| 121 | 113 |
| 122 // Launch python in unbuffered mode, so that python output doesn't mix with | 114 // Launch python in unbuffered mode, so that python output doesn't mix with |
| 123 // gtest output in buildbot log files. See http://crbug.com/147368. | 115 // gtest output in buildbot log files. See http://crbug.com/147368. |
| 124 python_cmd->AppendArg("-u"); | 116 python_cmd->AppendArg("-u"); |
| 125 | 117 |
| 126 return true; | 118 return true; |
| 127 } | 119 } |
| OLD | NEW |