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

Unified Diff: sdk/bin/docgen

Issue 435883003: Increase vm memory for docgen. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/bin/docgen
===================================================================
--- sdk/bin/docgen (revision 38824)
+++ sdk/bin/docgen (working copy)
@@ -26,10 +26,11 @@
if test -f "$SNAPSHOT"; then
exec "$BIN_DIR"/dart \
- "--package-root=$BIN_DIR/../packages/" "$SNAPSHOT" \
- docgen "--sdk=$SDK_DIR" "$@"
+ "--package-root=$BIN_DIR/../packages/" "--old_gen_heap_size=1024" \
+ "$SNAPSHOT" \
+ docgen "--sdk=$SDK_DIR" "$@"
else
exec "$BIN_DIR"/dart \
- "--package-root=$BIN_DIR/../packages/" \
+ "--package-root=$BIN_DIR/../packages/" "--old_gen_heap_size=1024" \
"$BIN_DIR/../../pkg/docgen/bin/docgen.dart" "--sdk=$SDK_DIR" "$@"
fi
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698