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

Unified Diff: dart/tools/utils.py

Issue 10164004: Remove frogsh. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 8 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 | « dart/tools/testing/dart/test_suite.dart ('k') | dart/utils/apidoc/html_diff_dump.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/utils.py
diff --git a/dart/tools/utils.py b/dart/tools/utils.py
index cfa431e13c35c351c63a5d55c9734983cc9c2815..3c90a5b05c9552d3183ccc2be55478413331aa13 100644
--- a/dart/tools/utils.py
+++ b/dart/tools/utils.py
@@ -109,22 +109,6 @@ def ListDartArgCallback(option, opt_str, value, parser):
setattr(parser.values, option.dest, value)
-# Returns the path to the Dart test runner (executes the .dart file).
-def GetDartRunner(mode, arch, component):
- build_root = GetBuildRoot(GuessOS(), mode, arch)
- if component == 'dartc':
- return os.path.join(build_root, 'compiler', 'bin', 'dartc_test')
- elif component == 'frog':
- return os.path.join(build_root, 'frog', 'bin', 'frog')
- elif component == 'frogsh':
- return os.path.join(build_root, 'frog', 'bin', 'frogsh')
- else:
- suffix = ''
- if IsWindows():
- suffix = '.exe'
- return os.path.join(build_root, 'dart') + suffix
-
-
# Mapping table between build mode and build configuration.
BUILD_MODES = {
'debug': 'Debug',
« no previous file with comments | « dart/tools/testing/dart/test_suite.dart ('k') | dart/utils/apidoc/html_diff_dump.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698