-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
56 lines (56 loc) · 2.31 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0"?>
<project name="Google API Library for GWT" default="build" basedir=".">
<!-- "build" is the default when subprojects are directly targetted -->
<property name="target" value="build"/>
<target name="search" description="Build AJAX Search">
<ant dir="search" target="${target}"/>
</target>
<target name="gadgets" description="Build Gadgets">
<ant dir="gadgets" target="${target}"/>
</target>
<target name="gears" description="Build Gears">
<ant dir="gears" target="${target}"/>
</target>
<target name="maps" description="Build Maps">
<ant dir="maps" target="${target}"/>
</target>
<target name="visualization" description="Build Visualization">
<ant dir="visualization" target="${target}"/>
</target>
<target name="ajaxloader" description="Build AjaxLoader">
<ant dir="ajaxloader" target="${target}"/>
</target>
<target name="language" description="Build Language">
<ant dir="language" target="${target}"/>
</target>
<target name="-do" depends="gadgets, gears, maps, search, visualization, ajaxloader, language" description="Run all subprojects"/>
<target name="build" description="Builds all of the APIs that make up the Google API Library for GWT">
<antcall target="-do">
<param name="target" value="build"/>
</antcall>
</target>
<target name="dist-dev" description="Builds development version of the APIs that make up the Google API Library for GWT">
<ant dir="ajaxloader" target="dist-dev"/>
<ant dir="gears" target="dist-dev"/>
<ant dir="gadgets" target="dist-dev"/>
<ant dir="language" target="dist-dev"/>
<ant dir="maps" target="dist-dev"/>
<ant dir="search" target="dist-dev"/>
<ant dir="visualization" target="dist-dev"/>
</target>
<target name="checkstyle" description="Static analysis of Google API Library for GWT source">
<antcall target="-do">
<param name="target" value="checkstyle"/>
</antcall>
</target>
<target name="test" description="Tests all of the APIs that make up the Google API Library for GWT">
<antcall target="-do">
<param name="target" value="test"/>
</antcall>
</target>
<target name="clean" description="Cleans the entire Google API Library for GWT build">
<antcall target="-do">
<param name="target" value="clean"/>
</antcall>
</target>
</project>