gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 1 | <project name="common"> |
gwt.team.jat | ceab1ec | 2006-12-28 22:48:49 +0000 | [diff] [blame] | 2 | <!-- 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.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 15 | <property name="test.ant.file" location="${gwt.root}/${project.tail}/build.xml" /> |
| 16 | <condition property="project.valid"> |
gwt.team.jat | ceab1ec | 2006-12-28 22:48:49 +0000 | [diff] [blame] | 17 | <equals arg1="${ant.file}" arg2="${test.ant.file}" |
| 18 | casesensitive="${gwt.build.iscasesensitivefs}"/> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 19 | </condition> |
| 20 | <fail unless="project.valid" message="This build file is in an inconsistent state." /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 21 | |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 22 | <!-- 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.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 43 | <property name="javac.out" location="${project.build}/bin" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 44 | <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.mmendez | 14e28a2 | 2006-12-11 04:34:27 +0000 | [diff] [blame] | 47 | <property name="javac.encoding" value="utf-8" /> |
gwt.team.scottb | 452a7e3 | 2007-08-21 02:34:57 +0000 | [diff] [blame] | 48 | <property name="javac.source" value="1.5" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 49 | <property name="javac.nowarn" value="true" /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 50 | <property name="junit.out" location="${project.build}/test" /> |
gwt.team.mmendez | 764ec74 | 2007-03-20 19:36:54 +0000 | [diff] [blame] | 51 | |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 52 | <!-- 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.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 56 | <!-- Platform identification --> |
| 57 | <condition property="build.host.islinux"> |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 58 | <and> |
| 59 | <os family="unix" /> |
| 60 | <not> |
| 61 | <contains string="${os.name}" substring="mac" casesensitive="false" /> |
| 62 | </not> |
| 63 | </and> |
| 64 | </condition> |
gwt.team.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 65 | <condition property="build.host.platform" value="linux"> |
| 66 | <isset property="build.host.islinux" /> |
| 67 | </condition> |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 68 | |
gwt.team.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 69 | <condition property="build.host.ismac"> |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 70 | <and> |
| 71 | <os family="unix" /> |
| 72 | <contains string="${os.name}" substring="mac" casesensitive="false" /> |
| 73 | </and> |
| 74 | </condition> |
gwt.team.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 75 | <condition property="build.host.platform" value="mac"> |
| 76 | <isset property="build.host.ismac" /> |
| 77 | </condition> |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 78 | |
gwt.team.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 79 | <condition property="build.host.iswindows"> |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 80 | <os family="windows" /> |
| 81 | </condition> |
gwt.team.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 82 | <condition property="build.host.platform" value="windows"> |
| 83 | <isset property="build.host.iswindows" /> |
| 84 | </condition> |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 85 | <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.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 91 | <!-- JUnit support --> |
gwt.team.scottb | a4f285c | 2006-12-09 02:11:15 +0000 | [diff] [blame] | 92 | <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.mmendez | 764ec74 | 2007-03-20 19:36:54 +0000 | [diff] [blame] | 94 | <property name="gwt.junit.testcase.includes" value="**/*Test.class"/> |
| 95 | |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 96 | <!-- |
| 97 | Comma delimited list of host and path components on which to run remote browser testing. |
| 98 | --> |
gwt.team.scottb | a4f285c | 2006-12-09 02:11:15 +0000 | [diff] [blame] | 99 | <property name="gwt.remote.browsers" value="" /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 100 | |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 101 | |
| 102 | <!-- Pulls in tasks defined in ant-contrib, i.e. foreach --> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 103 | <taskdef resource="net/sf/antcontrib/antlib.xml"> |
gwt.team.scottb | a4f285c | 2006-12-09 02:11:15 +0000 | [diff] [blame] | 104 | <classpath> |
| 105 | <pathelement location="${gwt.tools.antlib}/ant-contrib-1.0b3.jar" /> |
| 106 | </classpath> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 107 | </taskdef> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 108 | |
| 109 | <!-- Global Custom Tasks --> |
| 110 | <presetdef name="gwt.ant"> |
| 111 | <ant inheritall="false" target="${target}"> |
| 112 | <propertyset> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 113 | <propertyref name="gwt.version" /> |
| 114 | <propertyref name="gwt.junit.port" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 115 | <propertyref name="gwt.remote.browsers" /> |
| 116 | </propertyset> |
| 117 | </ant> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 118 | </presetdef> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 119 | |
| 120 | <presetdef name="gwt.javac"> |
gwt.team.scottb | c4700b8 | 2006-12-12 11:23:41 +0000 | [diff] [blame] | 121 | <javac srcdir="src" destdir="${javac.out}" debug="${javac.debug}" debuglevel="${javac.debuglevel}" source="${javac.source}" nowarn="${javac.nowarn}" encoding="${javac.encoding}" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 122 | </presetdef> |
| 123 | |
| 124 | <presetdef name="gwt.jar"> |
| 125 | <jar destfile="${project.lib}" update="true" duplicate="preserve" index="true" /> |
| 126 | </presetdef> |
| 127 | |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 128 | <macrodef name="gwt.junit"> |
gwt.team.scottb | 8635704 | 2007-03-09 08:00:14 +0000 | [diff] [blame] | 129 | <!-- TODO: make this more generic / refactor so it can be used from dev/core --> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 130 | <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.scottb | a4f285c | 2006-12-09 02:11:15 +0000 | [diff] [blame] | 134 | <sequential> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 135 | <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.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 142 | <echo message="Writing test results to @{test.reports} for @{test.cases}" /> |
gwt.team.scottb | a4f285c | 2006-12-09 02:11:15 +0000 | [diff] [blame] | 143 | <mkdir dir="@{test.reports}" /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 144 | |
gwt.team.scottb | a4f285c | 2006-12-09 02:11:15 +0000 | [diff] [blame] | 145 | <echo message="${javac.out} ${javac.junit.out}" /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 146 | <junit dir="@{test.out}" fork="yes" printsummary="yes" haltonfailure="true"> |
gwt.team.scottb | 193a3b9 | 2006-12-11 22:24:38 +0000 | [diff] [blame] | 147 | <jvmarg line="${junit.platform.args}" /> |
gwt.team.scottb | 44d1887 | 2007-12-19 01:49:16 +0000 | [diff] [blame] | 148 | <jvmarg line="-Xmx256m" /> |
gwt.team.scottb | a4f285c | 2006-12-09 02:11:15 +0000 | [diff] [blame] | 149 | <sysproperty key="gwt.args" value="@{test.args}" /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 150 | <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.scottb | e18b95c | 2006-12-21 22:35:49 +0000 | [diff] [blame] | 160 | <pathelement location="${gwt.tools.lib}/junit/junit-3.8.1.jar" /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 161 | </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.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 172 | |
gwt.team.scottb | b05c900 | 2006-12-12 09:53:31 +0000 | [diff] [blame] | 173 | <macrodef name="gwt.tgz.cat"> |
| 174 | <attribute name="destfile" /> |
| 175 | <element name="tar.elements" implicit="true" optional="true" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 176 | <sequential> |
gwt.team.scottb | b05c900 | 2006-12-12 09:53:31 +0000 | [diff] [blame] | 177 | <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.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 181 | </sequential> |
| 182 | </macrodef> |
| 183 | |
gwt.team.scottb | c4700b8 | 2006-12-12 11:23:41 +0000 | [diff] [blame] | 184 | <macrodef name="gwt.checkstyle"> |
| 185 | <element name="sourcepath" implicit="yes" optional="true" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 186 | <sequential> |
gwt.team.scottb | c4700b8 | 2006-12-12 11:23:41 +0000 | [diff] [blame] | 187 | <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.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 192 | </sequential> |
| 193 | </macrodef> |
| 194 | |
| 195 | <macrodef name="property.ensure"> |
| 196 | <attribute name="name" /> |
gwt.team.mmendez | 99f280b | 2006-12-08 23:11:29 +0000 | [diff] [blame] | 197 | <attribute name="location" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 198 | <attribute name="message" default="Cannot find dependency ${@{name}}" /> |
gwt.team.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 199 | <attribute name="unless" default="__nonexistent_property__" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 200 | <sequential> |
| 201 | <property name="@{name}" location="@{location}" /> |
gwt.team.scottb | 428b263 | 2006-12-12 22:40:34 +0000 | [diff] [blame] | 202 | <condition property="@{name}.exists"> |
| 203 | <or> |
| 204 | <available file="${@{name}}" /> |
| 205 | <isset property="@{unless}" /> |
| 206 | </or> |
| 207 | </condition> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 208 | <fail unless="@{name}.exists" message="@{message}" /> |
| 209 | </sequential> |
| 210 | </macrodef> |
| 211 | |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 212 | <!-- 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> |