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

Unified Diff: tools/utils.py

Issue 1559053002: Refs #10260 OpenBSD support #25327 Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address code review issues Created 4 years, 11 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/gyp/configurations_openbsd.gypi ('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 efcb886bfc5935b28d2e2b3e5945730055732d7f..e1ba01fa9ee816acd628046fa347eb938834dc08 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -602,7 +602,7 @@ def DartSdkBinary():
def CheckedInSdkPath():
# We don't use the normal macos, linux, win32 directory names here, instead,
# we use the names that the download_from_google_storage script uses.
- osdict = {'Darwin':'mac', 'Linux':'linux', 'Windows':'win'}
+ osdict = {'Darwin':'mac', 'Linux':'linux', 'OpenBSD': 'openbsd', 'Windows':'win'}
system = platform.system()
try:
osname = osdict[system]
« no previous file with comments | « tools/gyp/configurations_openbsd.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698