Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Side by Side Diff: content/public/android/java/content.xml

Issue 10830012: [Android] Add chrome_java target for building Java code in the chromium layer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@reland
Patch Set: formatting Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 <!--
2 2 Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <project name="Content" default="dist" basedir="."> 6 <project name="Content" default="dist" basedir=".">
7 <description> 7 <description>
8 building content java source code with ant 8 building content java source code with ant
9 </description> 9 </description>
10 <!-- set global properties for this build --> 10 <import file="../../../../build/android/ant/chromium-jars.xml" />
11 <property environment="env"/>
12 <property name="sdk.dir" location="${env.ANDROID_SDK_ROOT}"/>
13 <property name="sdk.version" value="${env.ANDROID_SDK_VERSION}"/>
14 <property name="src" location="src"/>
15 <property name="out.dir" location="${PRODUCT_DIR}/lib.java"/>
16 <property name="classes.dir" location="${PRODUCT_DIR}/java/${PACKAGE_NAME}"/>
17 <property name="jar.dir" location="${out.dir}"/>
18 11
19 <condition property="location.base" 12 <path id="javac.custom.classpath">
20 value="${sdk.dir}" 13 <pathelement location="${location.base}/android.jar" />
21 else="${sdk.dir}/platforms/android-${sdk.version}"> 14 <pathelement location="${lib.dir}/chromium_base.jar" />
22 <isset property="env.ANDROID_BUILD_TOP"/> 15 <pathelement location="${lib.dir}/chromium_net.jar" />
23 </condition> 16 </path>
24 17 <!-- Override javac path to include jars in lib.java directory -->
25 <target name="init"> 18 <property-value name="javac.srcdir" value="${src}:${lib.dir}" />
26 <!-- Create the time stamp -->
27 <tstamp/>
28 <!-- Create the build directory structure used by compile -->
29 <mkdir dir="${out.dir}"/>
30 </target>
31
32 <target name="compile" depends="init"
33 description="compile the source " >
34 <!-- Create the classes output directory -->
35 <mkdir dir="${classes.dir}"/>
36
37 <!-- Compile the java code from ${src} into ${classes.dir} -->
38 <!-- Gyp target should have compiled aidl files into java source files in
39 lib.jar (see content.gyp:common_aidl). -->
40 <javac srcdir="${src}:${out.dir}" destdir="${classes.dir}" debug="true" incl udeantruntime="false">
41 <classpath>
42 <pathelement path="${location.base}/android.jar" />
43 <pathelement path="${jar.dir}/chromium_base.jar" />
44 <pathelement path="${jar.dir}/chromium_net.jar" />
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="${jar.dir}"/>
53
54 <!-- Put everything in ${classes.dir} into the chromium_content.jar file -->
55 <jar jarfile="${jar.dir}/chromium_${PACKAGE_NAME}.jar" basedir="${classes.di r}"/>
56 </target>
57
58 <target name="clean" description="clean up" >
59 <!-- Delete the generated content -->
60 <delete dir="${classes.dir}"/>
61 <delete file="${jar.dir}/chromium_${PACKAGE_NAME}.jar"/>
62 </target>
63 </project> 19 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698