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

Unified Diff: tools/create_editor.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 | « editor/tools/plugins/com.google.dart.tools.deploy/dart_feature.product ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_editor.py
diff --git a/tools/create_editor.py b/tools/create_editor.py
index d53d19cda78d821288a8f045cf45e23ceaa0e872..39572601463e29ac9af0dfbcf2aadb7884d19bba 100644
--- a/tools/create_editor.py
+++ b/tools/create_editor.py
@@ -80,7 +80,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 | « editor/tools/plugins/com.google.dart.tools.deploy/dart_feature.product ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698