blob: a28dfd1ef77763d2ce9c2147eca18b863b60f61e [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="common">
gwt.team.jatceab1ec2006-12-28 22:48:49 +00002 <!-- gwt.build.iscasesensitivefs is true if the filesystem of the
3 build machine is case-sensitive, false otherwise. Update with
4 new lines for any supported platforms with case-insensitive
5 filesystems
6 -->
7 <condition property="gwt.build.iscasesensitivefs" else="false">
8 <not>
9 <or>
10 <os family="windows"/>
11 </or>
12 </not>
13 </condition>
14
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000015 <property name="test.ant.file" location="${gwt.root}/${project.tail}/build.xml" />
16 <condition property="project.valid">
gwt.team.jatceab1ec2006-12-28 22:48:49 +000017 <equals arg1="${ant.file}" arg2="${test.ant.file}"
18 casesensitive="${gwt.build.iscasesensitivefs}"/>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000019 </condition>
20 <fail unless="project.valid" message="This build file is in an inconsistent state." />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +000021
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000022 <!-- Global Properties -->
23 <property environment="env" />
24 <condition property="gwt.version" value="${env.GWT_VERSION}" else="0.0.0">
25 <isset property="env.GWT_VERSION" />
26 </condition>
27 <condition property="gwt.tools.check" value="${env.GWT_TOOLS}" else="${gwt.root}/../tools">
28 <isset property="env.GWT_TOOLS" />
29 </condition>
30 <property name="gwt.tools" location="${gwt.tools.check}" />
31 <property name="gwt.tools.lib" location="${gwt.tools}/lib" />
32 <property name="gwt.tools.antlib" location="${gwt.tools}/antlib" />
33 <property name="gwt.tools.redist" location="${gwt.tools}/redist" />
34 <property name="gwt.build" location="${gwt.root}/build" />
35 <property name="gwt.build.out" location="${gwt.build}/out" />
36 <property name="gwt.build.lib" location="${gwt.build}/lib" />
37 <property name="gwt.build.jni" location="${gwt.build}/jni" />
38 <property name="gwt.build.staging" location="${gwt.build}/staging" />
39 <property name="gwt.build.dist" location="${gwt.build}/dist" />
40 <property name="project.build" location="${gwt.build.out}/${project.tail}" />
41 <property name="project.lib" location="${gwt.build.lib}/gwt-${ant.project.name}.jar" />
42 <property name="project.jni" location="${gwt.build}/${project.tail}" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +000043 <property name="javac.out" location="${project.build}/bin" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000044 <property name="javac.junit.out" location="${project.build}/bin-test" />
45 <property name="javac.debug" value="true" />
46 <property name="javac.debuglevel" value="lines,vars,source" />
gwt.team.mmendez14e28a22006-12-11 04:34:27 +000047 <property name="javac.encoding" value="utf-8" />
gwt.team.scottb452a7e32007-08-21 02:34:57 +000048 <property name="javac.source" value="1.5" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000049 <property name="javac.nowarn" value="true" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +000050 <property name="junit.out" location="${project.build}/test" />
gwt.team.mmendez764ec742007-03-20 19:36:54 +000051
gwt.team.scottb193a3b92006-12-11 22:24:38 +000052 <!-- Sanity check -->
53 <available file="${gwt.tools}" type="dir" property="gwt.tools.exists" />
54 <fail unless="gwt.tools.exists" message="Cannot find '${gwt.tools}' tools directory; perhaps you should define the GWT_TOOLS environment variable" />
55
gwt.team.scottb428b2632006-12-12 22:40:34 +000056 <!-- Platform identification -->
57 <condition property="build.host.islinux">
gwt.team.scottb193a3b92006-12-11 22:24:38 +000058 <and>
59 <os family="unix" />
60 <not>
61 <contains string="${os.name}" substring="mac" casesensitive="false" />
62 </not>
63 </and>
64 </condition>
gwt.team.scottb428b2632006-12-12 22:40:34 +000065 <condition property="build.host.platform" value="linux">
66 <isset property="build.host.islinux" />
67 </condition>
gwt.team.scottb193a3b92006-12-11 22:24:38 +000068
gwt.team.scottb428b2632006-12-12 22:40:34 +000069 <condition property="build.host.ismac">
gwt.team.scottb193a3b92006-12-11 22:24:38 +000070 <and>
71 <os family="unix" />
72 <contains string="${os.name}" substring="mac" casesensitive="false" />
73 </and>
74 </condition>
gwt.team.scottb428b2632006-12-12 22:40:34 +000075 <condition property="build.host.platform" value="mac">
76 <isset property="build.host.ismac" />
77 </condition>
gwt.team.scottb193a3b92006-12-11 22:24:38 +000078
gwt.team.scottb428b2632006-12-12 22:40:34 +000079 <condition property="build.host.iswindows">
gwt.team.scottb193a3b92006-12-11 22:24:38 +000080 <os family="windows" />
81 </condition>
gwt.team.scottb428b2632006-12-12 22:40:34 +000082 <condition property="build.host.platform" value="windows">
83 <isset property="build.host.iswindows" />
84 </condition>
gwt.team.scottb193a3b92006-12-11 22:24:38 +000085 <fail unless="build.host.platform" message="Building on ${os.name} is not supported" />
86
87 <condition property="junit.platform.args" value="-XstartOnFirstThread" else="">
88 <equals arg1="${build.host.platform}" arg2="mac" casesensitive="false" />
89 </condition>
90
gwt.team.scottb428b2632006-12-12 22:40:34 +000091 <!-- JUnit support -->
gwt.team.scottba4f285c2006-12-09 02:11:15 +000092 <property name="gwt.dev.staging.jar" location="${gwt.build.staging}/gwt-${build.host.platform}-${gwt.version}/gwt-dev-${build.host.platform}.jar" />
93 <property name="gwt.junit.port" value="8888" />
gwt.team.mmendez764ec742007-03-20 19:36:54 +000094 <property name="gwt.junit.testcase.includes" value="**/*Test.class"/>
95
gwt.team.mmendez99f280b2006-12-08 23:11:29 +000096 <!--
97 Comma delimited list of host and path components on which to run remote browser testing.
98 -->
gwt.team.scottba4f285c2006-12-09 02:11:15 +000099 <property name="gwt.remote.browsers" value="" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000100
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000101
102 <!-- Pulls in tasks defined in ant-contrib, i.e. foreach -->
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000103 <taskdef resource="net/sf/antcontrib/antlib.xml">
gwt.team.scottba4f285c2006-12-09 02:11:15 +0000104 <classpath>
105 <pathelement location="${gwt.tools.antlib}/ant-contrib-1.0b3.jar" />
106 </classpath>
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000107 </taskdef>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000108
109 <!-- Global Custom Tasks -->
110 <presetdef name="gwt.ant">
111 <ant inheritall="false" target="${target}">
112 <propertyset>
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000113 <propertyref name="gwt.version" />
114 <propertyref name="gwt.junit.port" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000115 <propertyref name="gwt.remote.browsers" />
116 </propertyset>
117 </ant>
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000118 </presetdef>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000119
120 <presetdef name="gwt.javac">
gwt.team.scottbc4700b82006-12-12 11:23:41 +0000121 <javac srcdir="src" destdir="${javac.out}" debug="${javac.debug}" debuglevel="${javac.debuglevel}" source="${javac.source}" nowarn="${javac.nowarn}" encoding="${javac.encoding}" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000122 </presetdef>
123
124 <presetdef name="gwt.jar">
125 <jar destfile="${project.lib}" update="true" duplicate="preserve" index="true" />
126 </presetdef>
127
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000128 <macrodef name="gwt.junit">
gwt.team.scottb86357042007-03-09 08:00:14 +0000129 <!-- TODO: make this more generic / refactor so it can be used from dev/core -->
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000130 <attribute name="test.args" default="" />
131 <attribute name="test.out" default="" />
132 <attribute name="test.reports" default="@{test.out}/reports" />
133 <attribute name="test.cases" default="" />
gwt.team.scottba4f285c2006-12-09 02:11:15 +0000134 <sequential>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000135 <taskdef name="junit" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask">
136 <classpath>
137 <pathelement location="${gwt.tools.lib}/junit/junit-3.8.1.jar" />
138 <pathelement location="${gwt.tools.antlib}/ant-junit-1.6.5.jar" />
139 </classpath>
140 </taskdef>
141
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000142 <echo message="Writing test results to @{test.reports} for @{test.cases}" />
gwt.team.scottba4f285c2006-12-09 02:11:15 +0000143 <mkdir dir="@{test.reports}" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000144
gwt.team.scottba4f285c2006-12-09 02:11:15 +0000145 <echo message="${javac.out} ${javac.junit.out}" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000146 <junit dir="@{test.out}" fork="yes" printsummary="yes" haltonfailure="true">
gwt.team.scottb193a3b92006-12-11 22:24:38 +0000147 <jvmarg line="${junit.platform.args}" />
gwt.team.scottb44d18872007-12-19 01:49:16 +0000148 <jvmarg line="-Xmx256m" />
gwt.team.scottba4f285c2006-12-09 02:11:15 +0000149 <sysproperty key="gwt.args" value="@{test.args}" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000150 <sysproperty key="gwt.devjar" value="${gwt.dev.staging.jar}" />
151 <sysproperty key="java.awt.headless" value="true" />
152
153 <classpath>
154 <pathelement location="${gwt.root}/${project.tail}/src" />
155 <pathelement location="${gwt.root}/${project.tail}/super" />
156 <pathelement location="${gwt.root}/${project.tail}/test" />
157 <pathelement location="${javac.junit.out}" />
158 <pathelement location="${javac.out}" />
159 <pathelement location="${gwt.dev.staging.jar}" />
gwt.team.scottbe18b95c2006-12-21 22:35:49 +0000160 <pathelement location="${gwt.tools.lib}/junit/junit-3.8.1.jar" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000161 </classpath>
162
163 <formatter type="plain" />
164 <formatter type="xml" />
165
166 <batchtest todir="@{test.reports}">
167 <fileset refid="@{test.cases}" />
168 </batchtest>
169 </junit>
170 </sequential>
171 </macrodef>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000172
gwt.team.scottbb05c9002006-12-12 09:53:31 +0000173 <macrodef name="gwt.tgz.cat">
174 <attribute name="destfile" />
175 <element name="tar.elements" implicit="true" optional="true" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000176 <sequential>
gwt.team.scottbb05c9002006-12-12 09:53:31 +0000177 <taskdef name="tar.cat" classname="com.google.gwt.ant.taskdefs.TarCat" classpath="${gwt.build.lib}/ant-gwt.jar" />
178 <tar.cat destfile="${project.dist}" compression="gzip" longfile="gnu">
179 <tar.elements />
180 </tar.cat>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000181 </sequential>
182 </macrodef>
183
gwt.team.scottbc4700b82006-12-12 11:23:41 +0000184 <macrodef name="gwt.checkstyle">
185 <element name="sourcepath" implicit="yes" optional="true" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000186 <sequential>
gwt.team.scottbc4700b82006-12-12 11:23:41 +0000187 <taskdef resource="checkstyletask.properties" classpath="${gwt.tools.antlib}/checkstyle-all-4.2.jar;${gwt.build.lib}/gwt-customchecks.jar" />
188 <checkstyle config="${gwt.root}/eclipse/settings/code-style/gwt-checkstyle.xml" maxWarnings="0">
189 <property key="checkstyle.header.file" file="${gwt.root}/eclipse/settings/code-style/google.header" />
190 <sourcepath />
191 </checkstyle>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000192 </sequential>
193 </macrodef>
194
195 <macrodef name="property.ensure">
196 <attribute name="name" />
gwt.team.mmendez99f280b2006-12-08 23:11:29 +0000197 <attribute name="location" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000198 <attribute name="message" default="Cannot find dependency ${@{name}}" />
gwt.team.scottb428b2632006-12-12 22:40:34 +0000199 <attribute name="unless" default="__nonexistent_property__" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000200 <sequential>
201 <property name="@{name}" location="@{location}" />
gwt.team.scottb428b2632006-12-12 22:40:34 +0000202 <condition property="@{name}.exists">
203 <or>
204 <available file="${@{name}}" />
205 <isset property="@{unless}" />
206 </or>
207 </condition>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000208 <fail unless="@{name}.exists" message="@{message}" />
209 </sequential>
210 </macrodef>
211
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +0000212 <!-- Default implementations of the required targets; projects should
213 override the ones that matter -->
214 <target name="all" depends="verify" />
215 <target name="verify" depends="checkstyle, test" description="Verify this project" />
216 <target name="checkstyle" description="Static analysis of source" />
217 <target name="test" depends="build" description="Test this project" />
218 <target name="build" description="Build and (maybe) package this project" />
219
220 <target name="clean" description="Cleans this project's intermediate and output files">
221 <delete dir="${project.build}" />
222 </target>
223
224</project>