OLD | NEW |
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 Loading... |
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 Loading... |
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> |
OLD | NEW |