blob: 3c89a8af88b5f8ab361dce71d8cfe58f201fb369 [file] [log] [blame]
<project name="tools" default="build" basedir=".">
<property name="gwt.root" location=".." />
<property name="project.tail" value="tools" />
<import file="${gwt.root}/common.ant.xml" />
<!-- "build" is the default when subprojects are directly targetted -->
<property name="target" value="build" />
<target name="benchmark-viewer" depends="" description="Run benchmark-viewer">
<gwt.ant dir="benchmark-viewer" />
</target>
<target name="api-checker" depends="" description="Compile api-checker">
<gwt.ant dir="api-checker" />
</target>
<target name="-do" depends="benchmark-viewer,api-checker" description="Run all subfolders" />
<target name="build" description="Build each subfolder">
<antcall target="-do">
<param name="target" value="build" />
</antcall>
</target>
<target name="checkstyle" description="Static analysis of source for each subfolder">
<antcall target="-do">
<param name="target" value="checkstyle" />
</antcall>
</target>
<target name="test" depends="build" description="Test each subfolder">
<antcall target="-do">
<param name="target" value="test" />
</antcall>
</target>
</project>