Increase vm memory for docgen.

We are running out of memory on the bots generating the docs, see e.g.
http://build.chromium.org/p/client.dart/builders/new_analyzer-linux-release-be/builds/9085/steps/build/logs/stdio

I have filed issue 20308 to track this

R=whesse@google.com

Review URL: https://codereview.chromium.org//435883003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38825 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ricow@google.com 2014-08-01 08:43:19 +00:00
parent 5b6603995e
commit 46738fbe54

View file

@ -26,10 +26,11 @@ SNAPSHOT="$BIN_DIR/snapshots/utils_wrapper.dart.snapshot"
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