summaryrefslogtreecommitdiffstats
path: root/base/android/java/base.xml
blob: 2da14415189579b20aff49c79f9c2c67256732f4 (plain)
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
<project name="Base" default="dist" basedir=".">
  <description>
    building base java source code with ant
  </description>
  <!-- Set global properties for this build -->
  <property environment="env"/>
  <property name="sdk.dir" location="${env.ANDROID_SDK_ROOT}"/>
  <!-- TODO(jrg): The apk-runner's version is hardcoded to SDK version 14. These
    two should be unified. -->
  <property name="sdk.version" value="${env.ANDROID_SDK_VERSION}"/>
  <property name="src" location="."/>
  <property name="dist" location="dist"/>
  <property name="out.dir" location="${PRODUCT_DIR}"/>
  <!-- TODO(jrg): establish a standard for the intermediate java
       directories.  Settle on a standard once ant/jar build files
       like this are androidified -->
  <property name="dest.dir" location="${PRODUCT_DIR}/java/base"/>

  <!-- Set path depending on the type of repository. If ANDROID_BUILD_TOP is
    set then build using the provided location. Otherwise, assume the build
    is using the released SDK and set the path accordingly. -->
  <condition property="location.base"
             value="${sdk.dir}"
             else="${sdk.dir}/platforms/android-${sdk.version}">
    <isset property="env.ANDROID_BUILD_TOP"/>
  </condition>

  <target name="init">
    <!-- Create the time stamp -->
    <tstamp/>
    <!-- Create the build directory structure used by compile -->
    <mkdir dir="${out.dir}"/>
    <mkdir dir="${dest.dir}"/>
  </target>

  <target name="compile" depends="init"
          description="compile the source " >
    <!-- Compile the java code from ${src} into ${build} -->
    <!-- TODO(jrg): adapting this to a proper android antfile will
         remove warnings like this:
           base.xml:23: warning: 'includeantruntime' was not set, 
           defaulting to build.sysclasspath=last; 
           set to false for repeatable builds
      -->
    <javac srcdir="${src}" destdir="${dest.dir}">
      <classpath>
        <path location="${location.base}/android.jar"/>
      </classpath>
    </javac>
  </target>

  <target name="dist" depends="compile"
          description="generate the distribution" >
    <!-- Create the distribution directory -->
    <mkdir dir="${dist}/lib"/>

    <jar jarfile="${out.dir}/chromium_base.jar" basedir="${dest.dir}"/>
  </target>

  <target name="clean"
          description="clean up" >
    <!-- Delete the appropriate directory trees -->
    <delete dir="${dest.dir}"/>
    <delete dir="${dist}"/>
  </target>
</project>