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"/> |
11 <import file="domlib_sources.xml"/> | 11 <import file="domlib_sources.xml"/> |
12 <import file="htmllib_sources.xml"/> | 12 <import file="htmllib_sources.xml"/> |
13 <import file="jsonlib_sources.xml"/> | 13 <import file="jsonlib_sources.xml"/> |
14 <import file="isolatelib_sources.xml"/> | 14 <import file="isolatelib_sources.xml"/> |
15 | 15 |
16 <!-- | 16 <!-- |
17 The file build.properties does not exist. If provided, properties can be cus
tomized. | 17 The file build.properties does not exist. If provided, properties can be cus
tomized. |
18 --> | 18 --> |
19 <property file="build.properties" /> | 19 <property file="build.properties" /> |
20 | 20 |
21 <!-- | 21 <!-- |
22 Configuration properties. | 22 Configuration properties. |
23 --> | 23 --> |
24 <property name="build.dir" value="out"/> | 24 <property name="build.dir" value="out"/> |
25 | 25 |
26 <property name="build.classes.dir" value="${build.dir}/classes"/> | 26 <property name="build.classes.dir" value="${build.dir}/classes"/> |
27 | 27 |
28 <property name="corelib.source.dir" value="${build.dir}/corelib"/> | 28 <property name="corelib.source.dir" value="${build.dir}/corelib"/> |
29 | 29 |
30 <property name="domlib.source.dir" value="${build.dir}/../client/dom/"/> | 30 <property name="domlib.source.dir" value="${build.dir}/../lib/dom/"/> |
31 | 31 |
32 <property name="htmllib.source.dir" value="${build.dir}/../client/html/"/> | 32 <property name="htmllib.source.dir" value="${build.dir}/../lib/html/"/> |
33 | 33 |
34 <property name="jsonlib.source.dir" value="${build.dir}/../lib/json/"/> | 34 <property name="jsonlib.source.dir" value="${build.dir}/../lib/json/"/> |
35 | 35 |
36 <property name="isolatelib.source.dir" value="${build.dir}/../lib/isolate/"/> | 36 <property name="isolatelib.source.dir" value="${build.dir}/../lib/isolate/"/> |
37 | 37 |
38 <property name="build.test.classes.dir" value="${build.dir}/test/classes"/> | 38 <property name="build.test.classes.dir" value="${build.dir}/test/classes"/> |
39 | 39 |
40 <property name="dartc.jar" value="${build.dir}/dartc.jar"/> | 40 <property name="dartc.jar" value="${build.dir}/dartc.jar"/> |
41 | 41 |
42 <property name="corelib.jar" value="${build.dir}/corelib.jar"/> | 42 <property name="corelib.jar" value="${build.dir}/corelib.jar"/> |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 | 261 |
262 <target name="clean" description="Deletes the build output directory."> | 262 <target name="clean" description="Deletes the build output directory."> |
263 <delete dir="${build.dir}"/> | 263 <delete dir="${build.dir}"/> |
264 <delete dir="${dist.dir}"/> | 264 <delete dir="${dist.dir}"/> |
265 </target> | 265 </target> |
266 | 266 |
267 <target name="tests.jar" depends="compile-tests"> | 267 <target name="tests.jar" depends="compile-tests"> |
268 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> | 268 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> |
269 </target> | 269 </target> |
270 </project> | 270 </project> |
OLD | NEW |