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

Unified Diff: net/android/java/net.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: fix java build error Created 8 years, 4 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 | « media/base/android/java/media.xml ('k') | testing/android/generate_native_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/android/java/net.xml
diff --git a/net/android/java/net.xml b/net/android/java/net.xml
index 22d3871e161e587347e8e561afe261dbb9d8cc75..521f245bd0251c232a3bfab84fe0194362da4a2a 100644
--- a/net/android/java/net.xml
+++ b/net/android/java/net.xml
@@ -1,45 +1,16 @@
+<!--
+ 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="net" default="dist" basedir=".">
<description>
Building net/ java source code with ant.
</description>
- <!-- Set global properties for this build -->
- <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/net"/>
+ <import file="../../../build/android/ant/chromium-jars.xml"/>
- <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 " >
- <javac srcdir="${src}" destdir="${dest.dir}" debug="true" includeantruntime="false">
- <classpath>
- <path location="${ANDROID_SDK}/android.jar"/>
- <path location="${out.dir}/chromium_base.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_net.jar" basedir="${dest.dir}"/>
- </target>
-
- <target name="clean"
- description="clean up" >
- <delete dir="${dest.dir}"/>
- <delete dir="${dist}"/>
- </target>
+ <path id="javac.custom.classpath">
+ <pathelement location="${ANDROID_SDK}/android.jar"/>
+ <pathelement location="${lib.dir}/chromium_base.jar"/>
+ </path>
</project>
« no previous file with comments | « media/base/android/java/media.xml ('k') | testing/android/generate_native_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698