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

Side by Side Diff: base/android/java/base.xml

Issue 9514018: Add first java source code and gyp/ant changes to build java code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add first java source code and gyp/ant changes to build java code. Created 8 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/android/java/java.gyp » ('j') | base/android/java/java.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <project name="Base" default="dist" basedir=".">
2 <description>
3 building base java source code with ant
4 </description>
5 <!-- set global properties for this build -->
6 <property name="src" location="."/>
7 <property name="build" location="build"/>
8 <property name="dist" location="dist"/>
9
10 <target name="init">
11 <!-- Create the time stamp -->
12 <tstamp/>
13 <!-- Create the build directory structure used by compile -->
14 <mkdir dir="${build}"/>
15 </target>
16
17 <target name="compile" depends="init"
18 description="compile the source " >
19 <!-- Compile the java code from ${src} into ${build} -->
20 <javac srcdir="${src}" destdir="${build}"/>
21 </target>
22
23 <target name="dist" depends="compile"
24 description="generate the distribution" >
25 <!-- Create the distribution directory -->
26 <mkdir dir="${dist}/lib"/>
27
28 <!-- Put everything in ${build} into the chromium_base.jar file -->
29 <jar jarfile="${dist}/lib/chromium_base.jar" basedir="${build}"/>
30 </target>
31
32 <target name="clean"
33 description="clean up" >
34 <!-- Delete the ${build} and ${dist} directory trees -->
35 <delete dir="${build}"/>
36 <delete dir="${dist}"/>
37 </target>
38 </project>
OLDNEW
« no previous file with comments | « no previous file | base/android/java/java.gyp » ('j') | base/android/java/java.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698