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

Side by Side Diff: compiler/build.xml

Issue 9595016: Remove rhino - it's no longer used anywhere. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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 | compiler/dart-compiler.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 for details. All rights reserved. Use of this source code is governed by a 3 for details. All rights reserved. Use of this source code is governed by a
4 BSD-style license that can be found in the LICENSE file. 4 BSD-style license that can be found in the LICENSE file.
5 --> 5 -->
6 <project default="dist"> 6 <project default="dist">
7 <!-- 7 <!--
8 EDIT DARTC.XML FIRST. This file is no longer used to build 8 EDIT DARTC.XML FIRST. This file is no longer used to build
9 dartc proper. It is only here to avoid breaking dartium.gyp 9 dartc proper. It is only here to avoid breaking dartium.gyp
10 short term. Change dartc.xml to get everything working, 10 short term. Change dartc.xml to get everything working,
(...skipping 29 matching lines...) Expand all
40 40
41 <property name="test_py" location="../tools/test.py"/> 41 <property name="test_py" location="../tools/test.py"/>
42 42
43 <!-- 43 <!--
44 Define buildtime and runtime classpaths. 44 Define buildtime and runtime classpaths.
45 --> 45 -->
46 <path id="classpath.compile"> 46 <path id="classpath.compile">
47 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/> 47 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/>
48 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/> 48 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/>
49 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/> 49 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/>
50 <pathelement location="${third_party.dir}/rhino/1_7R3/js.jar"/>
51 </path> 50 </path>
52 51
53 <path id="classpath.runtime"> 52 <path id="classpath.runtime">
54 <path refid="classpath.compile"/> 53 <path refid="classpath.compile"/>
55 </path> 54 </path>
56 55
57 <path id="classpath.compile.tests"> 56 <path id="classpath.compile.tests">
58 <path refid="classpath.compile"/> 57 <path refid="classpath.compile"/>
59 <pathelement location="${build.classes.dir}"/> 58 <pathelement location="${build.classes.dir}"/>
60 <pathelement location="${third_party.dir}/junit/v4_8_2/junit.jar"/> 59 <pathelement location="${third_party.dir}/junit/v4_8_2/junit.jar"/>
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 177
179 <target name="clean" description="Deletes the build output directory."> 178 <target name="clean" description="Deletes the build output directory.">
180 <delete dir="${build.dir}"/> 179 <delete dir="${build.dir}"/>
181 <delete dir="${dist.dir}"/> 180 <delete dir="${dist.dir}"/>
182 </target> 181 </target>
183 182
184 <target name="tests.jar" depends="compile-tests"> 183 <target name="tests.jar" depends="compile-tests">
185 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> 184 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/>
186 </target> 185 </target>
187 </project> 186 </project>
OLDNEW
« no previous file with comments | « no previous file | compiler/dart-compiler.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698