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

Unified Diff: dart/tools/utils.py

Issue 10475003: Remove underscores from configurations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
Index: dart/tools/utils.py
diff --git a/dart/tools/utils.py b/dart/tools/utils.py
index bce6d2e0084600f6b9afe48d5d296aa1b07a97b9..06fe0acf21a5b6d59b418b1d1145c018258a1d71 100644
--- a/dart/tools/utils.py
+++ b/dart/tools/utils.py
@@ -130,7 +130,7 @@ def GetBuildMode(mode):
def GetBuildConf(mode, arch):
- return GetBuildMode(mode) + "_" + arch
+ return '%s%s' % (GetBuildMode(mode), arch.upper())
ARCH_GUESS = GuessArchitecture()
BASE_DIR = os.path.abspath(os.path.join(os.curdir, '..'))
« dart/tools/testing/dart/test_suite.dart ('K') | « dart/tools/testing/dart/test_suite.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698