blob: 2bdfb837352086f467361d086892fa445849fc04 [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="GWT" default="build" basedir=".">
2 <property name="gwt.root" location="." />
3 <property name="project.tail" value="" />
4 <import file="${gwt.root}/common.ant.xml" />
5
gwt.team.rdayal3fa0e322008-04-08 18:46:51 +00006 <!-- "build" is the default when subprojects are directly targetted -->
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00007 <property name="target" value="build" />
8
fabbott@google.com831b44c2008-04-28 15:22:02 +00009 <property name="gwt.apicheck.config"
10 location="tools/api-checker/config/gwt14_15userApi.conf"/>
11 <property name="gwt.apicheck.oldroot"
12 location="../gwt-1.4"/>
13
gwt.team.mmendez4449b342007-04-10 19:41:44 +000014 <target name="dist" depends="dev, user, servlet, tools, jni, doc, samples" description="Run the distributions">
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000015 <gwt.ant dir="distro-source" />
16 </target>
17
18 <target name="dev" depends="buildtools" description="Run dev">
19 <gwt.ant dir="dev" />
20 </target>
21
22 <target name="user" depends="buildtools, dev" description="Run user">
23 <gwt.ant dir="user" />
24 </target>
25
gwt.team.mmendez4449b342007-04-10 19:41:44 +000026 <target name="tools" depends="buildtools, user" description="Run tools">
27 <gwt.ant dir="tools" />
28 </target>
29
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000030 <target name="servlet" depends="buildtools, user" description="Run servlet">
31 <gwt.ant dir="servlet" />
32 </target>
33
34 <target name="jni" description="Run jni">
35 <gwt.ant dir="jni" />
36 </target>
37
38 <target name="doc" depends="buildtools, user" description="Build doc">
39 <gwt.ant dir="doc" />
40 </target>
41
42 <target name="samples" depends="dev, user" description="Build samples">
43 <gwt.ant dir="samples" />
44 </target>
45
46 <target name="buildtools" description="Build the build tools">
47 <gwt.ant dir="build-tools" />
48 </target>
49
50 <target name="-do" depends="dist" description="Run all subprojects" />
51
52 <target name="build" description="Builds GWT">
53 <antcall target="-do">
54 <param name="target" value="build" />
55 </antcall>
56 </target>
57
58 <target name="checkstyle" description="Static analysis of GWT source">
59 <antcall target="-do">
60 <param name="target" value="checkstyle" />
61 </antcall>
62 </target>
63
64 <target name="test" depends="build" description="Test GWT">
65 <antcall target="-do">
66 <param name="target" value="test" />
67 </antcall>
68 </target>
69
70 <target name="clean" description="Cleans the entire GWT build">
71 <delete dir="${gwt.build}" />
72 </target>
fabbott@google.com831b44c2008-04-28 15:22:02 +000073
74 <target name="apicheck" depends="build"
75 description="Checks API compatibility to prior GWT revision">
76 <copy tofile="${gwt.build.out}/userApi.conf" filtering="false"
77 file="${gwt.apicheck.config}"
78 overwrite="true">
79 <filterset>
80 <filter token="OLDROOT"
81 value="${gwt.apicheck.oldroot}"/>
82 </filterset>
83 </copy>
84 <java failonerror="true" fork="true"
85 classname="com.google.gwt.tools.apichecker.ApiCompatibilityChecker">
86 <classpath>
87 <pathelement location="${gwt.build.out}/tools/api-checker/bin"/>
88 <pathelement location="${gwt.build.out}/dev/core/bin"/>
89 <pathelement location="${gwt.build.out}/user/bin"/>
90 <pathelement location="${gwt.tools.lib}/eclipse/jdt-3.3.1.jar"/>
91 <pathelement path="${java.class.path}"/>
92 </classpath>
93 <arg file="${gwt.build.out}/userApi.conf"/>
94 </java>
95 </target>
96
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000097</project>