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

Side by Side Diff: compiler/build.xml

Issue 12326093: Remove r09 of guava; make sure all the dartc files are updated to use r13. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 25 matching lines...) Expand all
36 36
37 <property name="third_party.dir" value="../third_party"/> 37 <property name="third_party.dir" value="../third_party"/>
38 38
39 <property name="test_py" location="../tools/test.py"/> 39 <property name="test_py" location="../tools/test.py"/>
40 40
41 <!-- 41 <!--
42 Define buildtime and runtime classpaths. 42 Define buildtime and runtime classpaths.
43 --> 43 -->
44 <path id="classpath.compile"> 44 <path id="classpath.compile">
45 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/> 45 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/>
46 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/> 46 <pathelement location="${third_party.dir}/guava/r13/guava-13.0.1.jar"/>
47 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/> 47 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/>
48 </path> 48 </path>
49 49
50 <path id="classpath.runtime"> 50 <path id="classpath.runtime">
51 <path refid="classpath.compile"/> 51 <path refid="classpath.compile"/>
52 </path> 52 </path>
53 53
54 <path id="classpath.compile.tests"> 54 <path id="classpath.compile.tests">
55 <path refid="classpath.compile"/> 55 <path refid="classpath.compile"/>
56 <pathelement location="${build.classes.dir}"/> 56 <pathelement location="${build.classes.dir}"/>
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 <target name="clean" description="Deletes the build output directory."> 175 <target name="clean" description="Deletes the build output directory.">
176 <delete dir="${build.dir}"/> 176 <delete dir="${build.dir}"/>
177 <delete dir="${dist.dir}"/> 177 <delete dir="${dist.dir}"/>
178 </target> 178 </target>
179 179
180 <target name="tests.jar" depends="compile-tests"> 180 <target name="tests.jar" depends="compile-tests">
181 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> 181 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/>
182 </target> 182 </target>
183 </project> 183 </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