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

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

Issue 10541068: Make the other Java modules debuggable (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Make the indentation correct for content.xml Created 8 years, 6 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
« no previous file with comments | « base/android/java/base.xml ('k') | media/base/android/java/media.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 2
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 <!-- set global properties for this build -->
(...skipping 17 matching lines...) Expand all
28 <!-- Create the build directory structure used by compile --> 28 <!-- Create the build directory structure used by compile -->
29 <mkdir dir="${out.dir}"/> 29 <mkdir dir="${out.dir}"/>
30 </target> 30 </target>
31 31
32 <target name="compile" depends="init" 32 <target name="compile" depends="init"
33 description="compile the source " > 33 description="compile the source " >
34 <!-- Create the classes output directory --> 34 <!-- Create the classes output directory -->
35 <mkdir dir="${classes.dir}"/> 35 <mkdir dir="${classes.dir}"/>
36 36
37 <!-- Compile the java code from ${src} into ${classes.dir} --> 37 <!-- Compile the java code from ${src} into ${classes.dir} -->
38 <javac srcdir="${src}" destdir="${classes.dir}"> 38 <javac srcdir="${src}" destdir="${classes.dir}" debug="true">
39 <classpath> 39 <classpath>
40 <pathelement path="${location.base}/android.jar" /> 40 <pathelement path="${location.base}/android.jar" />
41 <pathelement path="${jar.dir}/chromium_base.jar" /> 41 <pathelement path="${jar.dir}/chromium_base.jar" />
42 </classpath> 42 </classpath>
43 </javac> 43 </javac>
44 </target> 44 </target>
45 45
46 <target name="dist" depends="compile" 46 <target name="dist" depends="compile"
47 description="generate the distribution" > 47 description="generate the distribution" >
48 <!-- Create the distribution directory --> 48 <!-- Create the distribution directory -->
49 <mkdir dir="${jar.dir}"/> 49 <mkdir dir="${jar.dir}"/>
50 50
51 <!-- Put everything in ${classes.dir} into the chromium_content.jar file --> 51 <!-- Put everything in ${classes.dir} into the chromium_content.jar file -->
52 <jar jarfile="${jar.dir}/chromium_${PACKAGE_NAME}.jar" basedir="${classes.di r}"/> 52 <jar jarfile="${jar.dir}/chromium_${PACKAGE_NAME}.jar" basedir="${classes.di r}"/>
53 </target> 53 </target>
54 54
55 <target name="clean" description="clean up" > 55 <target name="clean" description="clean up" >
56 <!-- Delete the generated content --> 56 <!-- Delete the generated content -->
57 <delete dir="${classes.dir}"/> 57 <delete dir="${classes.dir}"/>
58 <delete file="${jar.dir}/chromium_${PACKAGE_NAME}.jar"/> 58 <delete file="${jar.dir}/chromium_${PACKAGE_NAME}.jar"/>
59 </target> 59 </target>
60 </project> 60 </project>
OLDNEW
« no previous file with comments | « base/android/java/base.xml ('k') | media/base/android/java/media.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698