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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info.py

Issue 2725133005: Add 10.12 as a supported version in MacPort. (Closed)
Patch Set: Created 3 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 | third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info.py
index 860fcd6a255eb623eb7e60675e7cc68fcb72fa69..acf588ac6334a98e2c19152457f455d499a9cb95 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info.py
@@ -147,9 +147,8 @@ class PlatformInfo(object):
def _determine_mac_version(self, mac_version_string):
minor_release = int(mac_version_string.split('.')[1])
- # FIXME: This should really be >= 9, and we should get rid of 'future'.
- assert minor_release >= 6, 'Unsupported mac os version: %s' % mac_version_string
- if minor_release in (9, 10, 11):
+ assert minor_release >= 9, 'Unsupported mac OS version: %s' % mac_version_string
+ if minor_release <= 12:
return 'mac10.%d' % minor_release
return 'future'
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/common/system/platform_info_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698