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

Unified Diff: base/android/java/base.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: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/ant/chromium-jars.xml » ('j') | build/android/ant/chromium-jars.xml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/base.xml
diff --git a/base/android/java/base.xml b/base/android/java/base.xml
index 74589b467ec9a5ece21cc0d3784c5dd0618dc781..68048cab3e34197caed852434b6fa0e10b4a53aa 100644
--- a/base/android/java/base.xml
+++ b/base/android/java/base.xml
@@ -1,66 +1,15 @@
+<!--
+ Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file.
+-->
<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="src"/>
- <property name="dist" location="dist"/>
- <property name="out.dir" location="${PRODUCT_DIR}/lib.java"/>
- <!-- 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"/>
+ <import file="../../../build/android/ant/chromium-jars.xml" />
- <!-- 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}" debug="true" includeantruntime="false">
- <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="${out.dir}"/>
-
- <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>
+ <path id="javac.custom.classpath">
+ <pathelement location="${location.base}/android.jar" />
+ </path>
</project>
« no previous file with comments | « no previous file | build/android/ant/chromium-jars.xml » ('j') | build/android/ant/chromium-jars.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698