This repository was archived by the owner on Jan 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathbuild-src.xml
More file actions
88 lines (75 loc) · 3.49 KB
/
build-src.xml
File metadata and controls
88 lines (75 loc) · 3.49 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!--
Ant script to generate the GData java libraries and samples.
To build, run 'ant -f <path-to-this-file>'.
-->
<project name="gdata-src" default="build" basedir=".">
<!-- Include core build script -->
<import file="build-src/core.xml"/>
<!-- Include property specific build scripts -->
<import file="build-src/appsforyourdomain.xml"/>
<import file="build-src/analytics.xml"/>
<import file="build-src/blogger.xml"/>
<import file="build-src/books.xml"/>
<import file="build-src/calendar.xml"/>
<import file="build-src/codesearch.xml"/>
<import file="build-src/contacts.xml"/>
<import file="build-src/docs.xml"/>
<import file="build-src/finance.xml"/>
<import file="build-src/gbase.xml"/>
<import file="build-src/gtt.xml"/>
<import file="build-src/health.xml"/>
<import file="build-src/maps.xml"/>
<import file="build-src/photos.xml"/>
<import file="build-src/projecthosting.xml"/>
<import file="build-src/sidewiki.xml"/>
<import file="build-src/sites.xml"/>
<import file="build-src/spreadsheet.xml"/>
<import file="build-src/webmastertools.xml"/>
<!-- ===================================================================== -->
<!-- Build Library -->
<!-- ===================================================================== -->
<!-- Build core and service specific libraries -->
<target name="build" depends="build.core,
build.appsforyourdomain,
build.analytics,
build.blogger,
build.books,
build.calendar,
build.codesearch,
build.contacts,
build.docs,
build.finance,
build.gbase,
build.gtt,
build.health,
build.maps,
build.photos,
build.projecthosting,
build.sidewiki,
build.sites,
build.spreadsheet,
build.webmastertools"/>
<target name="clean" depends="clean.appsforyourdomain,
clean.analytics,
clean.blogger,
clean.books,
clean.calendar,
clean.codesearch,
clean.contacts,
clean.docs,
clean.finance,
clean.gbase,
clean.gtt,
clean.health,
clean.maps,
clean.photos,
clean.projecthosting,
clean.sidewiki,
clean.sites,
clean.spreadsheet,
clean.webmastertools"/>
<!-- ===================================================================== -->
<!-- Global target -->
<!-- ===================================================================== -->
<target name="all" depends="clean,build"/>
</project>