]> source.dussan.org Git - vaadin-framework.git/commitdiff
#7178 removed colorpicker and optimized widgetset compilation from Vaadin 6.7, parall...
authorHenri Sara <henri.sara@itmill.com>
Wed, 10 Aug 2011 07:10:48 +0000 (07:10 +0000)
committerHenri Sara <henri.sara@itmill.com>
Wed, 10 Aug 2011 07:10:48 +0000 (07:10 +0000)
svn changeset:20249/svn branch:6.7

build/build.xml

index f4e5a9ea1b55377ef230a586fa034b2c8529c1c4..fcf3b7bebc1b098b4e95bd5166924525edfbe689 100644 (file)
                <arg value="${widgetsets-output-dir}" />
                <arg value="-style" />
                <arg value="OBF" />
+               <arg value="-localWorkers" />
+               <arg value="4" />
                <arg value="${widgetset}" />
 
                <jvmarg value="-Xss8M"/>
        </antcall>
     </target>
 
-       <target name="compile-widgetset-optimized" unless="compile.only.default-widgetset">
-               <antcall target="compile-widgetset">
-                       <param name="widgetset" value="com.vaadin.demo.gwt.OptimizedWidgetSet"/>
-               </antcall>
-       </target>
-
-        <target name="compile-widgetset-colorpicker" unless="compile.only.default-widgetset">
-               <antcall target="compile-widgetset">
-                       <param name="widgetset" value="com.vaadin.demo.colorpicker.gwt.ColorPickerWidgetSet"/>
-               </antcall>
-           </target>
-    
     <!-- Builds the client-side engine, i.e., the widgetsets sequentially. -->
     <!-- Notice that antcall does not fulfill dependencies.                -->
     <target name="compile-client-side-sequential" unless="build.parallel">
         <!-- We can't call these with 'depends' because of the 'unless' specifier. -->
         <antcall target="compile-widgetset-default"/>
         <antcall target="compile-widgetset-portal-default"/>
-        <antcall target="compile-widgetset-optimized"/>
-        <antcall target="compile-widgetset-colorpicker"/>
     </target>
 
     <!-- Builds the client-side engine, i.e., the widgetsets in parallel. -->
         <parallel threadsperprocessor="1">
             <antcall target="compile-widgetset-default"/>
             <antcall target="compile-widgetset-portal-default"/>
-            <antcall target="compile-widgetset-optimized"/>
-            <antcall target="compile-widgetset-colorpicker"/>
         </parallel>
     </target>
 
     <!-- Build each widgetset locally, i.e., not for an installation package. -->
     <target name="widgetset-default" depends="init-nonpackage, init, compile-widgetset-generator, compile-widgetset-default"/>
     <target name="widgetset-portal-default" depends="init-nonpackage, init, compile-widgetset-generator, compile-widgetset-portal-default"/>
-    <target name="widgetset-colorpicker" depends="init-nonpackage, init, compile-widgetset-generator, compile-widgetset-colorpicker"/>
 
     <!-- ================================================================== -->
     <!-- Libraries and Demos                                                -->