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

Unified Diff: client/fling/build.xml

Issue 9314025: Remove fling, deftserver (used only by fling), and commons-codec (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 11 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 | « client/fling/README.txt ('k') | client/fling/dist/fling » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/fling/build.xml
===================================================================
--- client/fling/build.xml (revision 3853)
+++ client/fling/build.xml (working copy)
@@ -1,63 +0,0 @@
-<!-- Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
- for details. 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="fling" default="build">
- <property name="build.dir" location="out" />
- <property name="fling.dir" location="${build.dir}/fling" />
- <property name="root.dir" location="../.." />
-
- <target name="setup-eclipse">
- <copy file="eclipse/classpath" toFile=".classpath">
- <filterset>
- <filter token="BUILD_DIR" value="${build.dir}" />
- <filter token="ROOT_DIR" value="${root.dir}" />
- </filterset>
- </copy>
- <copy file="eclipse/project" tofile=".project" />
- <copy todir=".">
- <fileset dir="eclipse" includes="settings/*" />
- <filtermapper>
- <replacestring from="settings" to=".settings" />
- </filtermapper>
- </copy>
- </target>
-
- <target name="build">
- <mkdir dir="${fling.dir}/classes" />
- <mkdir dir="${fling.dir}/fling" />
-
- <!-- Copy the dist template directory -->
- <copy todir="${fling.dir}/fling">
- <fileset dir="dist" />
- </copy>
-
- <!-- Copy all deps into runtime -->
- <copy todir="${fling.dir}/fling/runtime" flatten="true">
- <fileset dir="../../third_party/deftserver" includes="**/*.jar" />
- <fileset dir="../../third_party/guava" includes="**/*.jar" />
- <fileset dir="${build.dir}/compiler/lib" includes="**/*.jar" />
- </copy>
-
- <!-- Build fling.jar -->
- <javac srcdir="src/java/core" destdir="${fling.dir}/classes" source="1.6">
- <classpath>
- <fileset dir="${fling.dir}/fling/runtime" includes="*.jar" />
- </classpath>
- </javac>
- <copy todir="${fling.dir}/classes">
- <fileset dir="src/java/core" includes="**/*.js" />
- </copy>
- <jar destfile="${fling.dir}/fling/runtime/fling.jar">
- <fileset dir="${fling.dir}/classes" />
- </jar>
-
- <chmod file="${fling.dir}/fling/fling" perm="555" />
- </target>
-
- <target name="clean">
- <delete dir="${fling.dir}" />
- <delete file=".classpath" />
- <delete file=".project" />
- <delete dir=".settings" />
- </target>
-</project>
« no previous file with comments | « client/fling/README.txt ('k') | client/fling/dist/fling » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698