Chromium Code Reviews| Index: tools/utils.py |
| diff --git a/tools/utils.py b/tools/utils.py |
| index eeee968acd3a3f18255a4f086201a6f4e19b77f1..9ef6c2f0443841e8dc5294f7596450ac6393eafa 100644 |
| --- a/tools/utils.py |
| +++ b/tools/utils.py |
| @@ -196,6 +196,12 @@ BUILD_ROOT = { |
| 'macos': os.path.join('xcodebuild'), |
| } |
| +def GetBuildbotGSUtilPath(): |
| + gsutil = '/b/build/scripts/slave/gsutil' |
|
ricow1
2013/05/17 08:19:07
I am not extremely happy about having buildbot spe
|
| + if platform.system() == 'Windows': |
| + gsutil = 'e:\\\\b\\build\\scripts\\slave\\gsutil' |
| + return gsutil |
| + |
| def GetBuildMode(mode): |
| global BUILD_MODES |
| return BUILD_MODES[mode] |