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

Unified Diff: chrome_release_test_status/build.xml

Issue 2831022: The following java and jsp files will collect the Chrome release testing stat... Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_release_test_status/COPYING ('k') | chrome_release_test_status/src/META-INF/jdoconfig.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_release_test_status/build.xml
===================================================================
--- chrome_release_test_status/build.xml (revision 0)
+++ chrome_release_test_status/build.xml (revision 0)
@@ -0,0 +1,54 @@
+<project>
+ <property name="sdk.dir" location="../.." />
+
+ <import file="${sdk.dir}/config/user/ant-macros.xml" />
+
+ <path id="project.classpath">
+ <pathelement path="war/WEB-INF/classes" />
+ <fileset dir="war/WEB-INF/lib">
+ <include name="**/*.jar" />
+ </fileset>
+ <fileset dir="${sdk.dir}/lib">
+ <include name="shared/**/*.jar" />
+ </fileset>
+ </path>
+
+ <target name="copyjars"
+ description="Copies the App Engine JARs to the WAR.">
+ <copy
+ todir="war/WEB-INF/lib"
+ flatten="true">
+ <fileset dir="${sdk.dir}/lib/user">
+ <include name="**/*.jar" />
+ </fileset>
+ </copy>
+ </target>
+
+<target name="compile" depends="copyjars"
+ description="Compiles Java source and copies other source files to the WAR.">
+ <mkdir dir="war/WEB-INF/classes" />
+ <copy todir="war/WEB-INF/classes">
+ <fileset dir="src">
+ <exclude name="**/*.java" />
+ </fileset>
+ </copy>
+ <javac
+ srcdir="src"
+ destdir="war/WEB-INF/classes"
+ classpathref="project.classpath"
+ debug="on" />
+ </target>
+
+ <target name="datanucleusenhance" depends="compile"
+ description="Performs JDO enhancement on compiled data classes.">
+ <enhance_war war="war" />
+ </target>
+
+ <target name="runserver" depends="datanucleusenhance"
+ description="Starts the development server.">
+ <dev_appserver war="war" />
+ </target>
+
+
+
+</project>
« no previous file with comments | « chrome_release_test_status/COPYING ('k') | chrome_release_test_status/src/META-INF/jdoconfig.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698