Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Unified Diff: tools/utils.py

Issue 15258005: First CL for supporting arm cross compilation + testing on dart buildbots (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/upload_sdk.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'
+ if platform.system() == 'Windows':
+ gsutil = 'e:\\\\b\\build\\scripts\\slave\\gsutil'
+ return gsutil
+
def GetBuildMode(mode):
global BUILD_MODES
return BUILD_MODES[mode]
« no previous file with comments | « tools/upload_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698