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

Unified Diff: editor/build/build.py

Issue 252063002: Rollback to 1024m max heap. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 | editor/tools/plugins/com.google.dart.tools.deploy/dart_feature.product » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/build/build.py
diff --git a/editor/build/build.py b/editor/build/build.py
index ba55e25ccd46c53c2432c7c1d091a01029878d5b..9baf80a2f294c16d4fc84d1a83d9bad215db6fdc 100755
--- a/editor/build/build.py
+++ b/editor/build/build.py
@@ -967,7 +967,7 @@ def Modify64BitDartEditorIni(iniFilePath):
lines = f.readlines()
f.close()
lines[lines.index('-Xms40m\n')] = '-Xms256m\n'
- lines[lines.index('-Xmx1850m\n')] = '-Xmx2000m\n'
+ lines[lines.index('-Xmx1024m\n')] = '-Xmx2000m\n'
# Add -d64 to give better error messages to user in 64 bit mode.
lines[lines.index('-vmargs\n')] = '-vmargs\n-d64\n'
f = open(iniFilePath, 'w')
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.tools.deploy/dart_feature.product » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698