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

Side by Side Diff: compiler/dart_analyzer.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 | « compiler/dart-compiler.gyp ('k') | compiler/eclipse.workspace/dartc/.classpath » ('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 <import file="sources.xml"/> 7 <import file="sources.xml"/>
8 <import file="test_sources.xml"/> 8 <import file="test_sources.xml"/>
9 9
10 <!-- 10 <!--
(...skipping 18 matching lines...) Expand all
29 29
30 <property name="third_party.dir" value="../third_party"/> 30 <property name="third_party.dir" value="../third_party"/>
31 31
32 <property name="test_py" location="../tools/test.py"/> 32 <property name="test_py" location="../tools/test.py"/>
33 33
34 <!-- 34 <!--
35 Define buildtime and runtime classpaths. 35 Define buildtime and runtime classpaths.
36 --> 36 -->
37 <path id="classpath.compile"> 37 <path id="classpath.compile">
38 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/> 38 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/>
39 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/> 39 <pathelement location="${third_party.dir}/guava/r13/guava-13.0.1.jar"/>
40 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/> 40 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/>
41 </path> 41 </path>
42 42
43 <path id="classpath.runtime"> 43 <path id="classpath.runtime">
44 <path refid="classpath.compile"/> 44 <path refid="classpath.compile"/>
45 </path> 45 </path>
46 46
47 <path id="classpath.compile.tests"> 47 <path id="classpath.compile.tests">
48 <path refid="classpath.compile"/> 48 <path refid="classpath.compile"/>
49 <pathelement location="${build.classes.dir}"/> 49 <pathelement location="${build.classes.dir}"/>
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 181
182 <target name="clean" description="Deletes the build output directory."> 182 <target name="clean" description="Deletes the build output directory.">
183 <delete dir="${build.dir}"/> 183 <delete dir="${build.dir}"/>
184 <delete dir="${dist.dir}"/> 184 <delete dir="${dist.dir}"/>
185 </target> 185 </target>
186 186
187 <target name="tests.jar" depends="compile-tests"> 187 <target name="tests.jar" depends="compile-tests">
188 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> 188 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/>
189 </target> 189 </target>
190 </project> 190 </project>
OLDNEW
« no previous file with comments | « compiler/dart-compiler.gyp ('k') | compiler/eclipse.workspace/dartc/.classpath » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698