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

Unified Diff: tools/utils.py

Issue 1086613002: Add annotated steps for dart_services (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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/bots/dart_services.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 3c1eacb8fd4d7c6475b781538fdc0cbe8f0e4948..7da961cd2dd7fce1b63f36412135a83e42333ecc 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -272,6 +272,10 @@ def GetBuildRoot(host_os, mode=None, arch=None, target_os=None):
build_root = os.path.join(build_root, GetBuildConf(mode, arch, target_os))
return build_root
+def GetBuildSdkBin(host_os, mode=None, arch=None, target_os=None):
+ build_root = GetBuildRoot(host_os, mode, arch, target_os)
+ return os.path.join(build_root, 'dart-sdk', 'bin')
+
def GetBaseDir():
return BASE_DIR
« no previous file with comments | « tools/bots/dart_services.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698