| 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 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 <property name="test_py" location="../tools/test.py"/> | 41 <property name="test_py" location="../tools/test.py"/> |
| 42 | 42 |
| 43 <!-- | 43 <!-- |
| 44 Define buildtime and runtime classpaths. | 44 Define buildtime and runtime classpaths. |
| 45 --> | 45 --> |
| 46 <path id="classpath.compile"> | 46 <path id="classpath.compile"> |
| 47 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/> | 47 <pathelement location="${third_party.dir}/args4j/2.0.12/args4j-2.0.12.jar"/> |
| 48 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/> | 48 <pathelement location="${third_party.dir}/guava/r09/guava-r09.jar"/> |
| 49 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/> | 49 <pathelement location="${third_party.dir}/json/r2_20080312/json.jar"/> |
| 50 <pathelement location="${third_party.dir}/rhino/1_7R3/js.jar"/> | |
| 51 </path> | 50 </path> |
| 52 | 51 |
| 53 <path id="classpath.runtime"> | 52 <path id="classpath.runtime"> |
| 54 <path refid="classpath.compile"/> | 53 <path refid="classpath.compile"/> |
| 55 </path> | 54 </path> |
| 56 | 55 |
| 57 <path id="classpath.compile.tests"> | 56 <path id="classpath.compile.tests"> |
| 58 <path refid="classpath.compile"/> | 57 <path refid="classpath.compile"/> |
| 59 <pathelement location="${build.classes.dir}"/> | 58 <pathelement location="${build.classes.dir}"/> |
| 60 <pathelement location="${third_party.dir}/junit/v4_8_2/junit.jar"/> | 59 <pathelement location="${third_party.dir}/junit/v4_8_2/junit.jar"/> |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 177 |
| 179 <target name="clean" description="Deletes the build output directory."> | 178 <target name="clean" description="Deletes the build output directory."> |
| 180 <delete dir="${build.dir}"/> | 179 <delete dir="${build.dir}"/> |
| 181 <delete dir="${dist.dir}"/> | 180 <delete dir="${dist.dir}"/> |
| 182 </target> | 181 </target> |
| 183 | 182 |
| 184 <target name="tests.jar" depends="compile-tests"> | 183 <target name="tests.jar" depends="compile-tests"> |
| 185 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> | 184 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> |
| 186 </target> | 185 </target> |
| 187 </project> | 186 </project> |
| OLD | NEW |