Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <project name="net" default="dist" basedir="."> | |
| 2 <description> | |
| 3 Building net/ java source code with ant. | |
| 4 </description> | |
| 5 <!-- Set global properties for this build --> | |
| 6 <property environment="env"/> | |
| 7 <property name="sdk.dir" location="${env.ANDROID_SDK_ROOT}"/> | |
| 8 <!-- TODO(jrg): The apk-runner's version is hardcoded to SDK version 14. These | |
| 9 two should be unified. --> | |
| 10 <property name="sdk.version" value="${env.ANDROID_SDK_VERSION}"/> | |
| 11 <property name="src" location="."/> | |
| 12 <property name="dist" location="dist"/> | |
| 13 <property name="out.dir" location="${PRODUCT_DIR}"/> | |
| 14 <!-- TODO(jrg): establish a standard for the intermediate java | |
| 15 directories. Settle on a standard once ant/jar build files | |
| 16 like this are androidified --> | |
| 17 <property name="dest.dir" location="${PRODUCT_DIR}/java/net"/> | |
| 18 | |
| 19 <!-- Set path depending on the type of repository. If ANDROID_BUILD_TOP is | |
| 20 set then build using the provided location. Otherwise, assume the build | |
| 21 is using the released SDK and set the path accordingly. --> | |
| 22 <condition property="location.base" | |
| 23 value="${sdk.dir}" | |
| 24 else="${sdk.dir}/platforms/android-${sdk.version}"> | |
| 25 <isset property="env.ANDROID_BUILD_TOP"/> | |
| 26 </condition> | |
| 27 | |
| 28 <target name="init"> | |
| 29 <!-- Create the time stamp --> | |
| 30 <tstamp/> | |
| 31 <!-- Create the build directory structure used by compile --> | |
| 32 <mkdir dir="${out.dir}"/> | |
| 33 <mkdir dir="${dest.dir}"/> | |
| 34 </target> | |
| 35 | |
| 36 <target name="compile" depends="init" | |
| 37 description="compile the source " > | |
| 38 <javac srcdir="${src}" destdir="${dest.dir}"> | |
| 39 <classpath> | |
| 40 <path location="${location.base}/android.jar"/> | |
| 41 <!-- TODO(yfriedman): This should be added automatically when ant | |
| 42 makefiles are generated (crbug.com/123420). Update this to base's new | |
| 43 location when it moves to PRODUCT_DIR. --> | |
| 44 <path location="../../../base/android/java/dist/lib/chromium_base.jar"/> | |
|
Ryan Sleevi
2012/04/17 17:56:06
Does this need to be updated now that it's been re
Yaron
2012/04/17 22:47:38
No, it requires jrg@s patch. If this lands first,
| |
| 45 </classpath> | |
| 46 </javac> | |
| 47 </target> | |
| 48 | |
| 49 <target name="dist" depends="compile" | |
| 50 description="generate the distribution" > | |
| 51 <!-- Create the distribution directory --> | |
| 52 <mkdir dir="${dist}/lib"/> | |
| 53 | |
| 54 <jar jarfile="${out.dir}/chromium_net.jar" basedir="${dest.dir}"/> | |
| 55 </target> | |
| 56 | |
| 57 <target name="clean" | |
| 58 description="clean up" > | |
| 59 <delete dir="${dest.dir}"/> | |
| 60 <delete dir="${dist}"/> | |
| 61 </target> | |
| 62 </project> | |
| OLD | NEW |