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
|
<!--
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/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/health.xml"/>
<import file="build-src/photos.xml"/>
<import file="build-src/spreadsheet.xml"/>
<import file="build-src/youtube.xml"/>
<import file="build-src/webmastertools.xml"/>
<!-- ===================================================================== -->
<!-- Build Library -->
<!-- ===================================================================== -->
<!-- Build core and service specific libraries -->
<target name="build">
<antcall target="core.build.core"/>
<antcall target="appsforyourdomain.build.appsforyourdomain"/>
<antcall target="calendar.build.calendar"/>
<antcall target="codesearch.build.codesearch"/>
<antcall target="contacts.build.contacts"/>
<antcall target="docs.build.docs"/>
<antcall target="finance.build.finance"/>
<antcall target="gbase.build.gbase"/>
<antcall target="health.build.health"/>
<antcall target="photos.build.photos"/>
<antcall target="spreadsheet.build.spreadsheet"/>
<antcall target="youtube.build.youtube"/>
<antcall target="webmastertools.build.webmastertools"/>
</target>
<target name="clean">
<antcall target="core.clean.core"/>
<antcall target="appsforyourdomain.clean.appsforyourdomain"/>
<antcall target="calendar.clean.calendar"/>
<antcall target="codesearch.clean.codesearch"/>
<antcall target="contacts.clean.contacts"/>
<antcall target="docs.clean.docs"/>
<antcall target="finance.clean.finance"/>
<antcall target="gbase.clean.gbase"/>
<antcall target="health.clean.health"/>
<antcall target="photos.clean.photos"/>
<antcall target="youtube.clean.youtube"/>
<antcall target="webmastertools.clean.webmastertools"/>
</target>
<!-- ===================================================================== -->
<!-- Global target -->
<!-- ===================================================================== -->
<target name="all" depends="clean,build"/>
</project>
|