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