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

Unified Diff: pylib/gyp/common.py

Issue 12389082: make gyp recognize OpenBSD (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: make gyp recognize OpenBSD Created 7 years, 10 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 | « no previous file | pylib/gyp/common_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/common.py
diff --git a/pylib/gyp/common.py b/pylib/gyp/common.py
index 8eb7aa016ac612abf62f9f3c85b91a10b719047a..e50f51c3079768f65d18f164af4fc7fee5a8f262 100644
--- a/pylib/gyp/common.py
+++ b/pylib/gyp/common.py
@@ -392,6 +392,8 @@ def GetFlavor(params):
return 'solaris'
if sys.platform.startswith('freebsd'):
return 'freebsd'
+ if sys.platform.startswith('openbsd'):
+ return 'openbsd'
if sys.platform.startswith('aix'):
return 'aix'
« no previous file with comments | « no previous file | pylib/gyp/common_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698