blob: 72a03c94ca4db28e8453e12c9da6947b1706f419 [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="platforms">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00002 <import file="${gwt.root}/common.ant.xml" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00003
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00004 <!-- "build" is the default when subprojects are directly targetted -->
5 <property name="target" value="build" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00006
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00007 <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.scottb14c5b9d2006-12-10 06:06:08 +000011
jat@google.com0b1619e2009-09-20 19:33:31 +000012 <target name="-do" depends="core" description="Run all platforms" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000013
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000014 <target name="build" description="Build each platforms">
15 <antcall target="-do">
16 <param name="target" value="build" />
17 </antcall>
18 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000019
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000020 <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.scottb14c5b9d2006-12-10 06:06:08 +000025
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000026 <target name="test" description="Test each platform">
27 <antcall target="-do">
28 <param name="target" value="test" />
29 </antcall>
30 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000031
32</project>