blob: 49296901cdf5286d2c290c0812bc06e3f5efe4fc [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="samples" default="build" basedir=".">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00002 <property name="gwt.root" location=".." />
3 <property name="project.tail" value="samples" />
4 <import file="${gwt.root}/common.ant.xml" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00005
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00006 <!-- "build" is the default when subprojects are directly targetted -->
7 <property name="target" value="build" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00008
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00009 <target name="dynatable" description="Build dynatable">
10 <gwt.ant dir="dynatable" />
11 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000012
rjrjr@google.comd39fe782010-07-23 22:42:40 +000013 <target name="dynatablerf" description="Build dynatablerf">
14 <gwt.ant dir="dynatablerf" />
15 </target>
16
cramsdale@google.comfa87f8f2010-08-19 01:29:03 +000017 <target name="expenses" description="Build expenses">
18 <gwt.ant dir="expenses" />
19 </target>
20
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000021 <target name="hello" description="Build hello">
22 <gwt.ant dir="hello" />
23 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000024
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000025 <target name="json" description="Build json">
26 <gwt.ant dir="json" />
27 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000028
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000029 <target name="mail" description="Build mail">
30 <gwt.ant dir="mail" />
31 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000032
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000033 <target name="showcase" description="Build showcase">
34 <gwt.ant dir="showcase" />
35 </target>
gwt.team.jlabanca40faa082008-03-12 00:08:50 +000036
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000037 <target name="-do" description="Run all subprojects" >
38 <antcall target="dynatable" />
cramsdale@google.comfa87f8f2010-08-19 01:29:03 +000039 <antcall target="expenses" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000040 <antcall target="hello" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000041 <antcall target="json" />
42 <antcall target="mail" />
43 <antcall target="showcase" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000044 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000045
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000046 <target name="build" description="Builds GWT">
47 <gwt.timer name="all">
48 <antcall target="-do">
49 <param name="target" value="build" />
50 </antcall>
51 </gwt.timer>
52 <length property="gwt.sample.length">
scottb@google.com6cd61e92009-01-16 19:50:20 +000053 <fileset dir="${gwt.build.out}/samples" includes="*/war/*/*.cache.html,*/war/*/*.cache.js"/>
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000054 </length>
55 <echo message="compiled size of all samples is ${gwt.sample.length} bytes."/>
56 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000057
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000058 <target name="checkstyle" description="Static analysis of GWT source">
59 <antcall target="-do">
60 <param name="target" value="checkstyle" />
61 </antcall>
62 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000063
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000064 <target name="test" description="Test GWT">
65 <antcall target="-do">
66 <param name="target" value="test" />
67 </antcall>
68 </target>
gwt.team.scottb69965322006-12-19 23:58:19 +000069
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000070 <target name="clean" description="Cleans this project's intermediate and output files">
71 <delete dir="${project.build}" />
72 <delete dir="${gwt.build.out}/samples-scripts" />
73 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000074</project>