blob: f1403d46017eb149a43988e596428a242932ffe3 [file] [log] [blame]
fabbott@google.com71e72af2009-06-13 02:28:21 +00001<project name="GWT" default="dist" basedir=".">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00002 <property name="gwt.root" location="." />
3 <property name="project.tail" value="" />
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" />
jlabanca@google.com81244562009-08-05 19:55:36 +00008 <property name="emma.merged.out" value="${project.build}/emma-coverage" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00009
fabbott@google.com71e72af2009-06-13 02:28:21 +000010 <!--
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000011 Convenience for the lateral calls we make. Use gwt.ant to
12 descend into another directory, and this to call in the same build.xml.
13 NOTE THE USE OF $TARGET, here and in common's gwt.ant. This has the
14 effect of dividing rules into subdirectory rules (using gwt.ant and
15 sensitive to $target) and action rules (using call-subproject and
16 setting $target)... but it is Bad for a subdirectory rule to depend
17 on another one, as they are both sensitive to $target, but you probably
18 mean that subdirB needed subdirA to be _built_, not $target'ed (tested,
19 etc.)
20
21 In other words, DO NOT USE DEPENDS=... IN A TARGET WITH GWT.ANT.
fabbott@google.com71e72af2009-06-13 02:28:21 +000022 -->
23 <macrodef name="call-subproject">
24 <attribute name="subproject" />
25 <attribute name="subtarget" />
26 <sequential>
27 <antcall target="@{subproject}">
28 <param name="target" value="@{subtarget}" />
29 </antcall>
30 </sequential>
31 </macrodef>
32
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000033 <property name="gwt.apicheck.config"
jlabanca@google.com88361222010-02-10 05:44:59 +000034 location="tools/api-checker/config/gwt20_21userApi.conf"/>
fabbott@google.com831b44c2008-04-28 15:22:02 +000035
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000036 <target name="buildonly"
37 description="[action] Minimal one-platform devel build, without distro packaging">
jat@google.com0b1619e2009-09-20 19:33:31 +000038 <call-subproject subproject="dev" subtarget="build" />
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000039 <call-subproject subproject="user" subtarget="build" />
40 <call-subproject subproject="servlet" subtarget="build" />
jat@google.com64a55cb2009-10-16 14:16:57 +000041 <call-subproject subproject="jni" subtarget="build" />
fabbott@google.com71e72af2009-06-13 02:28:21 +000042 </target>
43
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000044 <target name="dist" depends="build, doc" description="[action] Make all the distributions">
jat@google.com04912f22008-11-26 00:21:22 +000045 <gwt.ant dir="distro-source" />
46 </target>
47
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000048 <target name="dist-dev" depends="buildonly" description="[action] Make this platform's distribution, minus doc and samples">
jat@google.com0b1619e2009-09-20 19:33:31 +000049 <gwt.ant dir="distro-source" target="build" />
fabbott@google.com71e72af2009-06-13 02:28:21 +000050 </target>
51
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000052 <target name="dev" description="[subdir] Builds (or runs ${target} if set) all the dev libraries">
53 <call-subproject subproject="buildtools" subtarget="build" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000054 <gwt.ant dir="dev" />
55 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000056
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000057 <target name="user" description="[subdir] Builds (or runs ${target} if set) only the user library">
jat@google.com0b1619e2009-09-20 19:33:31 +000058 <call-subproject subproject="dev" subtarget="build"/>
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000059 <gwt.ant dir="user" />
60 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000061
amitmanjhi@google.com674ee0b2010-04-02 22:29:40 +000062 <target name="soyc" description="[subdir] Builds (or runs ${target} if set) only the soyc library">
63 <call-subproject subproject="dev" subtarget="build"/>
64 <call-subproject subproject="user" subtarget="build"/>
65 <gwt.ant dir="tools/soyc-vis" />
66 </target>
67
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000068 <target name="tools" description="[subdir] Builds (or runs ${target} if set) only the tools">
69 <call-subproject subproject="user" subtarget="build"/>
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000070 <gwt.ant dir="tools" />
71 </target>
gwt.team.mmendez4449b342007-04-10 19:41:44 +000072
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000073 <target name="servlet" description="[subdir] Builds (or runs ${target} if set) only the servlet jar">
74 <call-subproject subproject="user" subtarget="build" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000075 <gwt.ant dir="servlet" />
76 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000077
jat@google.com64a55cb2009-10-16 14:16:57 +000078 <target name="jni" description="[subdir] Builds (or runs ${target} if set) jni for all platforms">
79 <gwt.ant dir="jni" />
80 </target>
81
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000082 <target name="doc" description="[subdir] Builds (or runs ${target} if set) the doc">
83 <call-subproject subproject="user" subtarget="build" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000084 <gwt.ant dir="doc" />
85 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000086
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000087 <target name="samples" description="[subdir] Builds (or runs ${target} if set) the samples">
88 <call-subproject subproject="user" subtarget="build" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000089 <gwt.ant dir="samples" />
90 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000091
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000092 <target name="buildtools" description="[subdir] Build (or runs ${target} if set) the build tools">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000093 <gwt.ant dir="build-tools" />
94 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000095
fabbott@google.com3d7fbc22009-06-18 05:07:26 +000096 <target name="build" description="[action] Builds GWT, including samples, but without distro packaging">
97 <call-subproject subproject="dev" subtarget="build"/>
98 <call-subproject subproject="user" subtarget="build"/>
99 <call-subproject subproject="servlet" subtarget="build"/>
100 <call-subproject subproject="tools" subtarget="build"/>
jat@google.com64a55cb2009-10-16 14:16:57 +0000101 <call-subproject subproject="jni" subtarget="build"/>
fabbott@google.com3d7fbc22009-06-18 05:07:26 +0000102 <call-subproject subproject="samples" subtarget="build"/>
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000103 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000104
fabbott@google.com3d7fbc22009-06-18 05:07:26 +0000105 <target name="checkstyle" description="[action] Does static analysis of GWT source">
fabbott@google.com71e72af2009-06-13 02:28:21 +0000106 <call-subproject subproject="buildtools" subtarget="checkstyle" />
107 <call-subproject subproject="dev" subtarget="checkstyle" />
108 <call-subproject subproject="user" subtarget="checkstyle" />
109 <call-subproject subproject="servlet" subtarget="checkstyle" />
110 <call-subproject subproject="tools" subtarget="checkstyle" />
111 <call-subproject subproject="samples" subtarget="checkstyle" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000112 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000113
fabbott@google.com61094352009-07-11 02:18:10 +0000114 <target name="test" depends="dist-dev,apicheck,checkstyle"
115 description="[action] Runs all the GWT tests, including checkstyle and apicheck">
fabbott@google.com71e72af2009-06-13 02:28:21 +0000116 <call-subproject subproject="buildtools" subtarget="test" />
117 <call-subproject subproject="dev" subtarget="test" />
118 <call-subproject subproject="user" subtarget="test" />
119 <call-subproject subproject="servlet" subtarget="test" />
120 <call-subproject subproject="tools" subtarget="test" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000121 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000122
gwt.mirrorbot@gmail.comd54a4bd2010-06-07 19:20:31 +0000123 <target name="benchmark" depends="dist-dev"
124 description="[action] Runs all the GWT benchmarks">
125 <call-subproject subproject="user" subtarget="benchmark" />
126 </target>
127
jlabanca@google.com81244562009-08-05 19:55:36 +0000128 <path id="emma.classpath.src">
129 <pathelement location="${gwt.root}/user/src" />
130 <pathelement location="${gwt.root}/dev/**/src/com/google" />
131 <pathelement location="${gwt.root}/build-tools/**/src/com/google" />
132 <pathelement location="${gwt.root}/tools/**/src/com/google" />
133 </path>
134
135 <target name="emma.merge" description="Merges coverage data for all projects">
136 <delete dir="${emma.merged.out}" />
137 <mkdir dir="${emma.merged.out}" />
138 <emma>
139 <merge outfile="${emma.merged.out}/merged.emma" >
140 <fileset dir="${project.build}">
141 <include name="**/*.emma" />
142 <exclude name="**/merged.emma" />
143 </fileset>
144 </merge>
145 </emma>
146 <emma>
147 <report sourcepath="${emma.classpath.src}">
148 <fileset dir="${project.build}">
149 <patternset>
150 <include name="**/metadata.emma"/>
151 </patternset>
152 </fileset>
153 <fileset file="${emma.merged.out}/merged.emma" />
154 <txt outfile="${emma.merged.out}/coverage.txt" />
155 <html outfile="${emma.merged.out}/coverage.html" />
156 <xml outfile="${emma.merged.out}/coverage.xml" />
157 </report>
158 </emma>
159 </target>
160
fabbott@google.com3d7fbc22009-06-18 05:07:26 +0000161 <target name="clean" description="[action] Cleans the entire GWT build">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000162 <delete dir="${gwt.build}" />
163 </target>
fabbott@google.com831b44c2008-04-28 15:22:02 +0000164
fabbott@google.com61094352009-07-11 02:18:10 +0000165 <target name ="presubmit" description="[action] Deprecated for test, which now does checkstyle and apicheck"
jat@google.come0fa5b12009-10-13 23:57:19 +0000166 depends="test">
fabbott@google.com71e72af2009-06-13 02:28:21 +0000167 </target>
jat@google.come0fa5b12009-10-13 23:57:19 +0000168
ecc@google.comed46bf82009-01-29 17:07:24 +0000169 <target name="apicheck-nobuild"
fabbott@google.com3d7fbc22009-06-18 05:07:26 +0000170 description="[action] Checks API compatibility to prior GWT revision">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000171 <java failonerror="true" fork="true"
172 classname="com.google.gwt.tools.apichecker.ApiCompatibilityChecker">
jat@google.come7f61a72008-12-24 00:45:21 +0000173 <jvmarg line="-Xmx512m" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000174 <classpath>
175 <pathelement location="${gwt.build.out}/tools/api-checker/bin"/>
jat@google.com0b1619e2009-09-20 19:33:31 +0000176 <fileset dir="${gwt.build.lib}" includes="gwt-user.jar,gwt-dev.jar" />
nchalko@google.comeb3e87a2010-08-05 20:48:12 +0000177 <pathelement location="${gwt.tools.lib}/javax/validation/validation-api-1.0.0.GA.jar" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000178 <pathelement path="${java.class.path}"/>
amitmanjhi@google.comfe888202009-05-19 01:02:22 +0000179 <pathelement location="${gwt.tools.lib}/apache/ant-1.6.5.jar" />
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000180 </classpath>
amitmanjhi@google.comfe888202009-05-19 01:02:22 +0000181 <arg value="-refJar"/>
fabbott@google.com35e6cb12009-07-13 12:30:55 +0000182 <arg path="${gwt.root}/tools/api-checker/reference/gwt-dev-modified.jar:${gwt.root}/tools/api-checker/reference/gwt-user-modified.jar"/>
jat@google.come7f61a72008-12-24 00:45:21 +0000183 <arg value="-configFile"/>
fabbott@google.com744d7842009-10-08 01:58:00 +0000184 <arg file="${gwt.apicheck.config}"/>
amitmanjhi@google.comfe888202009-05-19 01:02:22 +0000185 <arg value="-logLevel"/>
186 <arg value="ERROR"/>
fabbott@google.com0e2dc6282008-08-22 16:09:01 +0000187 </java>
188 </target>
jat@google.come0fa5b12009-10-13 23:57:19 +0000189
fabbott@google.com61094352009-07-11 02:18:10 +0000190 <target name="apicheck" depends="buildonly,tools,apicheck-nobuild"
fabbott@google.com3d7fbc22009-06-18 05:07:26 +0000191 description="[action] Builds GWT and checks API compatiblity to prior release"/>
jat@google.come0fa5b12009-10-13 23:57:19 +0000192
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000193</project>