gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 1 | <project name="platforms"> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 2 | <import file="${gwt.root}/common.ant.xml" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 3 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 4 | <!-- "build" is the default when subprojects are directly targetted --> |
| 5 | <property name="target" value="build" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 6 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 7 | <available file="core/build.xml" type="file" property="core.exists" /> |
| 8 | <target name="core" description="Run core" if="core.exists"> |
| 9 | <gwt.ant dir="core" /> |
| 10 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 11 | |
jat@google.com | 0b1619e | 2009-09-20 19:33:31 +0000 | [diff] [blame] | 12 | <target name="-do" depends="core" description="Run all platforms" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 13 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 14 | <target name="build" description="Build each platforms"> |
| 15 | <antcall target="-do"> |
| 16 | <param name="target" value="build" /> |
| 17 | </antcall> |
| 18 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 19 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 20 | <target name="checkstyle" description="Static analysis of source for each platform"> |
| 21 | <antcall target="-do"> |
| 22 | <param name="target" value="checkstyle" /> |
| 23 | </antcall> |
| 24 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 25 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 26 | <target name="test" description="Test each platform"> |
| 27 | <antcall target="-do"> |
| 28 | <param name="target" value="test" /> |
| 29 | </antcall> |
| 30 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 31 | |
| 32 | </project> |