| 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 <import file="corelib_sources.xml"/> | 9 <import file="corelib_sources.xml"/> |
| 10 <import file="compiler_corelib_sources.xml"/> | 10 <import file="compiler_corelib_sources.xml"/> |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 <property name="test_py" location="../tools/test.py"/> | 58 <property name="test_py" location="../tools/test.py"/> |
| 59 | 59 |
| 60 <!-- | 60 <!-- |
| 61 Define buildtime and runtime classpaths. | 61 Define buildtime and runtime classpaths. |
| 62 --> | 62 --> |
| 63 <path id="classpath.compile"> | 63 <path id="classpath.compile"> |
| 64 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/> | 64 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/> |
| 65 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/> | 65 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/> |
| 66 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/> | 66 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/> |
| 67 <pathelement location="${third_party.dir}/rhino/1_7R3/js.jar"/> | |
| 68 </path> | 67 </path> |
| 69 | 68 |
| 70 <path id="classpath.runtime"> | 69 <path id="classpath.runtime"> |
| 71 <path refid="classpath.compile"/> | 70 <path refid="classpath.compile"/> |
| 72 </path> | 71 </path> |
| 73 | 72 |
| 74 <path id="classpath.compile.tests"> | 73 <path id="classpath.compile.tests"> |
| 75 <path refid="classpath.compile"/> | 74 <path refid="classpath.compile"/> |
| 76 <pathelement location="${build.classes.dir}"/> | 75 <pathelement location="${build.classes.dir}"/> |
| 77 <pathelement location="${third_party.dir}/junit/v4_8_2/junit.jar"/> | 76 <pathelement location="${third_party.dir}/junit/v4_8_2/junit.jar"/> |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 261 |
| 263 <target name="clean" description="Deletes the build output directory."> | 262 <target name="clean" description="Deletes the build output directory."> |
| 264 <delete dir="${build.dir}"/> | 263 <delete dir="${build.dir}"/> |
| 265 <delete dir="${dist.dir}"/> | 264 <delete dir="${dist.dir}"/> |
| 266 </target> | 265 </target> |
| 267 | 266 |
| 268 <target name="tests.jar" depends="compile-tests"> | 267 <target name="tests.jar" depends="compile-tests"> |
| 269 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> | 268 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> |
| 270 </target> | 269 </target> |
| 271 </project> | 270 </project> |
| OLD | NEW |