vexpress: Increase dalvick heap size

Increasing the initial size and free space of the dalvick heap
reduces the amount of garbage collection in Java programs and
has a significant effect on improving the AndEBench Java
benchmark.

Change-Id: I9cf1779c4be367bfa0f8a2d3018111555788c8a7
Signed-off-by: Jon Medhurst <tixy@linaro.org>
diff --git a/device.mk b/device.mk
index a811996..2dfe0aa 100644
--- a/device.mk
+++ b/device.mk
@@ -35,6 +35,11 @@
 else
 DEVICE_PACKAGE_OVERLAYS := \
     device/linaro/vexpress/overlay
+
+PRODUCT_PROPERTY_OVERRIDES += \
+	dalvik.vm.heapstartsize=16M \
+	dalvik.vm.heapmaxfree=8M \
+	dalvik.vm.heapminfree=2M
 endif
 
 PRODUCT_PROPERTY_OVERRIDES += \