fabbott@google.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 1 | <project name="GWT" default="dist" basedir="."> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 2 | <property name="gwt.root" location="." /> |
| 3 | <property name="project.tail" value="" /> |
| 4 | <import file="${gwt.root}/common.ant.xml" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 5 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 6 | <!-- "build" is the default when subprojects are directly targetted --> |
| 7 | <property name="target" value="build" /> |
jlabanca@google.com | 8124456 | 2009-08-05 19:55:36 +0000 | [diff] [blame] | 8 | <property name="emma.merged.out" value="${project.build}/emma-coverage" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 9 | |
fabbott@google.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 10 | <!-- |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 11 | 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.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 22 | --> |
| 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.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 33 | <property name="gwt.apicheck.config" |
jlabanca@google.com | 8836122 | 2010-02-10 05:44:59 +0000 | [diff] [blame] | 34 | location="tools/api-checker/config/gwt20_21userApi.conf"/> |
fabbott@google.com | 831b44c | 2008-04-28 15:22:02 +0000 | [diff] [blame] | 35 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 36 | <target name="buildonly" |
| 37 | description="[action] Minimal one-platform devel build, without distro packaging"> |
jat@google.com | 0b1619e | 2009-09-20 19:33:31 +0000 | [diff] [blame] | 38 | <call-subproject subproject="dev" subtarget="build" /> |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 39 | <call-subproject subproject="user" subtarget="build" /> |
| 40 | <call-subproject subproject="servlet" subtarget="build" /> |
jat@google.com | 64a55cb | 2009-10-16 14:16:57 +0000 | [diff] [blame] | 41 | <call-subproject subproject="jni" subtarget="build" /> |
fabbott@google.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 42 | </target> |
| 43 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 44 | <target name="dist" depends="build, doc" description="[action] Make all the distributions"> |
jat@google.com | 04912f2 | 2008-11-26 00:21:22 +0000 | [diff] [blame] | 45 | <gwt.ant dir="distro-source" /> |
| 46 | </target> |
| 47 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 48 | <target name="dist-dev" depends="buildonly" description="[action] Make this platform's distribution, minus doc and samples"> |
jat@google.com | 0b1619e | 2009-09-20 19:33:31 +0000 | [diff] [blame] | 49 | <gwt.ant dir="distro-source" target="build" /> |
fabbott@google.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 50 | </target> |
| 51 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 52 | <target name="dev" description="[subdir] Builds (or runs ${target} if set) all the dev libraries"> |
| 53 | <call-subproject subproject="buildtools" subtarget="build" /> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 54 | <gwt.ant dir="dev" /> |
| 55 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 56 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 57 | <target name="user" description="[subdir] Builds (or runs ${target} if set) only the user library"> |
jat@google.com | 0b1619e | 2009-09-20 19:33:31 +0000 | [diff] [blame] | 58 | <call-subproject subproject="dev" subtarget="build"/> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 59 | <gwt.ant dir="user" /> |
| 60 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 61 | |
amitmanjhi@google.com | 674ee0b | 2010-04-02 22:29:40 +0000 | [diff] [blame] | 62 | <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.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 68 | <target name="tools" description="[subdir] Builds (or runs ${target} if set) only the tools"> |
| 69 | <call-subproject subproject="user" subtarget="build"/> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 70 | <gwt.ant dir="tools" /> |
| 71 | </target> |
gwt.team.mmendez | 4449b34 | 2007-04-10 19:41:44 +0000 | [diff] [blame] | 72 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 73 | <target name="servlet" description="[subdir] Builds (or runs ${target} if set) only the servlet jar"> |
| 74 | <call-subproject subproject="user" subtarget="build" /> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 75 | <gwt.ant dir="servlet" /> |
| 76 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 77 | |
jat@google.com | 64a55cb | 2009-10-16 14:16:57 +0000 | [diff] [blame] | 78 | <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.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 82 | <target name="doc" description="[subdir] Builds (or runs ${target} if set) the doc"> |
| 83 | <call-subproject subproject="user" subtarget="build" /> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 84 | <gwt.ant dir="doc" /> |
| 85 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 86 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 87 | <target name="samples" description="[subdir] Builds (or runs ${target} if set) the samples"> |
| 88 | <call-subproject subproject="user" subtarget="build" /> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 89 | <gwt.ant dir="samples" /> |
| 90 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 91 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 92 | <target name="buildtools" description="[subdir] Build (or runs ${target} if set) the build tools"> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 93 | <gwt.ant dir="build-tools" /> |
| 94 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 95 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 96 | <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.com | 64a55cb | 2009-10-16 14:16:57 +0000 | [diff] [blame] | 101 | <call-subproject subproject="jni" subtarget="build"/> |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 102 | <call-subproject subproject="samples" subtarget="build"/> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 103 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 104 | |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 105 | <target name="checkstyle" description="[action] Does static analysis of GWT source"> |
fabbott@google.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 106 | <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.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 112 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 113 | |
fabbott@google.com | 6109435 | 2009-07-11 02:18:10 +0000 | [diff] [blame] | 114 | <target name="test" depends="dist-dev,apicheck,checkstyle" |
| 115 | description="[action] Runs all the GWT tests, including checkstyle and apicheck"> |
fabbott@google.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 116 | <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.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 121 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 122 | |
gwt.mirrorbot@gmail.com | d54a4bd | 2010-06-07 19:20:31 +0000 | [diff] [blame] | 123 | <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.com | 8124456 | 2009-08-05 19:55:36 +0000 | [diff] [blame] | 128 | <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.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 161 | <target name="clean" description="[action] Cleans the entire GWT build"> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 162 | <delete dir="${gwt.build}" /> |
| 163 | </target> |
fabbott@google.com | 831b44c | 2008-04-28 15:22:02 +0000 | [diff] [blame] | 164 | |
fabbott@google.com | 6109435 | 2009-07-11 02:18:10 +0000 | [diff] [blame] | 165 | <target name ="presubmit" description="[action] Deprecated for test, which now does checkstyle and apicheck" |
jat@google.com | e0fa5b1 | 2009-10-13 23:57:19 +0000 | [diff] [blame] | 166 | depends="test"> |
fabbott@google.com | 71e72af | 2009-06-13 02:28:21 +0000 | [diff] [blame] | 167 | </target> |
jat@google.com | e0fa5b1 | 2009-10-13 23:57:19 +0000 | [diff] [blame] | 168 | |
ecc@google.com | ed46bf8 | 2009-01-29 17:07:24 +0000 | [diff] [blame] | 169 | <target name="apicheck-nobuild" |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 170 | description="[action] Checks API compatibility to prior GWT revision"> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 171 | <java failonerror="true" fork="true" |
| 172 | classname="com.google.gwt.tools.apichecker.ApiCompatibilityChecker"> |
jat@google.com | e7f61a7 | 2008-12-24 00:45:21 +0000 | [diff] [blame] | 173 | <jvmarg line="-Xmx512m" /> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 174 | <classpath> |
| 175 | <pathelement location="${gwt.build.out}/tools/api-checker/bin"/> |
jat@google.com | 0b1619e | 2009-09-20 19:33:31 +0000 | [diff] [blame] | 176 | <fileset dir="${gwt.build.lib}" includes="gwt-user.jar,gwt-dev.jar" /> |
nchalko@google.com | eb3e87a | 2010-08-05 20:48:12 +0000 | [diff] [blame] | 177 | <pathelement location="${gwt.tools.lib}/javax/validation/validation-api-1.0.0.GA.jar" /> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 178 | <pathelement path="${java.class.path}"/> |
amitmanjhi@google.com | fe88820 | 2009-05-19 01:02:22 +0000 | [diff] [blame] | 179 | <pathelement location="${gwt.tools.lib}/apache/ant-1.6.5.jar" /> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 180 | </classpath> |
amitmanjhi@google.com | fe88820 | 2009-05-19 01:02:22 +0000 | [diff] [blame] | 181 | <arg value="-refJar"/> |
fabbott@google.com | 35e6cb1 | 2009-07-13 12:30:55 +0000 | [diff] [blame] | 182 | <arg path="${gwt.root}/tools/api-checker/reference/gwt-dev-modified.jar:${gwt.root}/tools/api-checker/reference/gwt-user-modified.jar"/> |
jat@google.com | e7f61a7 | 2008-12-24 00:45:21 +0000 | [diff] [blame] | 183 | <arg value="-configFile"/> |
fabbott@google.com | 744d784 | 2009-10-08 01:58:00 +0000 | [diff] [blame] | 184 | <arg file="${gwt.apicheck.config}"/> |
amitmanjhi@google.com | fe88820 | 2009-05-19 01:02:22 +0000 | [diff] [blame] | 185 | <arg value="-logLevel"/> |
| 186 | <arg value="ERROR"/> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 187 | </java> |
| 188 | </target> |
jat@google.com | e0fa5b1 | 2009-10-13 23:57:19 +0000 | [diff] [blame] | 189 | |
fabbott@google.com | 6109435 | 2009-07-11 02:18:10 +0000 | [diff] [blame] | 190 | <target name="apicheck" depends="buildonly,tools,apicheck-nobuild" |
fabbott@google.com | 3d7fbc2 | 2009-06-18 05:07:26 +0000 | [diff] [blame] | 191 | description="[action] Builds GWT and checks API compatiblity to prior release"/> |
jat@google.com | e0fa5b1 | 2009-10-13 23:57:19 +0000 | [diff] [blame] | 192 | |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 193 | </project> |