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

Unified Diff: tools/create_sdk.py

Issue 10584002: Enable turning on analyzer build in sdk for macs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated another condition stanza in dart.gyp Created 8 years, 6 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.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index 872251a4aba684f6aaae79a60af7d61f3021336c..aeba302c1d48ca060a1d6378923b296270809d13 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -98,7 +98,8 @@ def Copy(src, dest):
# TODO(zundel): this excludes the analyzer from the sdk build until builders
# have all prerequisite software installed. Also update dart.gyp.
def ShouldCopyAnalyzer():
- return utils.GuessOS() == 'linux'
+ os = utils.GuessOS();
+ return os == 'linux' or os == 'macos'
def CopyShellScript(src_file, dest_dir):
« no previous file with comments | « dart.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698