]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed the parallel building of widgetsets as it can take too much memory in some...
authorMarko Grönroos <magi@iki.fi>
Wed, 31 Dec 2008 19:03:05 +0000 (19:03 +0000)
committerMarko Grönroos <magi@iki.fi>
Wed, 31 Dec 2008 19:03:05 +0000 (19:03 +0000)
svn changeset:6387/svn branch:trunk

build/build.xml

index ec9071ab3828615db14dca8e2e2417ce4a7277f4..38b34a75f37539db8479827ed9289344ddfac350 100644 (file)
                <echo>Compiled ColorPickerWidgetSet</echo>
        </target>
 
-       <!-- Builds the client-side engine, i.e., the widgetsets in parallel. -->
-       <target name="compile-client-side">
-               <echo>Compiling widget sets in parallel.</echo>
-               <parallel threadsperprocessor="1">
-                       <subant antfile="build.xml" target="compile-widgetset-default" inheritall="true" buildpath="build" />
-                       <subant antfile="build.xml" target="compile-widgetset-sampler" inheritall="true" buildpath="build" />
-                       <subant antfile="build.xml" target="compile-widgetset-reserver" inheritall="true" buildpath="build" />          
-                       <subant antfile="build.xml" target="compile-widgetset-colorpicker" inheritall="true" buildpath="build" />
-               </parallel>
+       <!-- Builds the client-side engine, i.e., the widgetsets. -->
+       <target name="compile-client-side" depends="compile-widgetset-default, compile-widgetset-reserver, compile-widgetset-sampler, compile-widgetset-colorpicker">
+        <!-- Building the widgetsets is currently done sequentially, because
+            parallel compilation takes too much memory for most machines. -->
        </target>
 
        <!-- Definitions for building local components, i.e., not for an installation package. -->