OLD | NEW |
1 <project default="dist"> | 1 <project default="dist"> |
2 <import file="sources.xml"/> | 2 <import file="sources.xml"/> |
3 <import file="test_sources.xml"/> | 3 <import file="test_sources.xml"/> |
4 <import file="corelib_sources.xml"/> | 4 <import file="corelib_sources.xml"/> |
5 <import file="compiler_corelib_sources.xml"/> | 5 <import file="compiler_corelib_sources.xml"/> |
6 <import file="domlib_sources.xml"/> | 6 <import file="domlib_sources.xml"/> |
7 <import file="htmllib_sources.xml"/> | 7 <import file="htmllib_sources.xml"/> |
8 <import file="jsonlib_sources.xml"/> | 8 <import file="jsonlib_sources.xml"/> |
9 | 9 |
10 <!-- | 10 <!-- |
11 The file build.properties does not exist. If provided, properties can be cus
tomized. | 11 The file build.properties does not exist. If provided, properties can be cus
tomized. |
12 --> | 12 --> |
13 <property file="build.properties" /> | 13 <property file="build.properties" /> |
14 | 14 |
15 <!-- | 15 <!-- |
16 Configuration properties. | 16 Configuration properties. |
17 --> | 17 --> |
18 <property name="build.dir" value="out"/> | 18 <property name="build.dir" value="out"/> |
19 | 19 |
20 <property name="build.classes.dir" value="${build.dir}/classes"/> | 20 <property name="build.classes.dir" value="${build.dir}/classes"/> |
21 | 21 |
22 <property name="corelib.source.dir" value="${build.dir}/corelib"/> | 22 <property name="corelib.source.dir" value="${build.dir}/corelib"/> |
23 | 23 |
24 <property name="domlib.source.dir" value="${build.dir}/../client/dom/"/> | 24 <property name="domlib.source.dir" value="${build.dir}/../client/dom/"/> |
25 | 25 |
26 <property name="htmllib.source.dir" value="${build.dir}/../client/html/"/> | 26 <property name="htmllib.source.dir" value="${build.dir}/../client/html/"/> |
27 | 27 |
28 <property name="jsonlib.source.dir" value="${build.dir}/../client/json/"/> | 28 <property name="jsonlib.source.dir" value="${build.dir}/../lib/json/"/> |
29 | 29 |
30 <property name="build.test.classes.dir" value="${build.dir}/test/classes"/> | 30 <property name="build.test.classes.dir" value="${build.dir}/test/classes"/> |
31 | 31 |
32 <property name="dartc.jar" value="${build.dir}/dartc.jar"/> | 32 <property name="dartc.jar" value="${build.dir}/dartc.jar"/> |
33 | 33 |
34 <property name="corelib.jar" value="${build.dir}/corelib.jar"/> | 34 <property name="corelib.jar" value="${build.dir}/corelib.jar"/> |
35 | 35 |
36 <property name="domlib.jar" value="${build.dir}/domlib.jar"/> | 36 <property name="domlib.jar" value="${build.dir}/domlib.jar"/> |
37 | 37 |
38 <property name="htmllib.jar" value="${build.dir}/htmllib.jar"/> | 38 <property name="htmllib.jar" value="${build.dir}/htmllib.jar"/> |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 | 251 |
252 <target name="clean" description="Deletes the build output directory."> | 252 <target name="clean" description="Deletes the build output directory."> |
253 <delete dir="${build.dir}"/> | 253 <delete dir="${build.dir}"/> |
254 <delete dir="${dist.dir}"/> | 254 <delete dir="${dist.dir}"/> |
255 </target> | 255 </target> |
256 | 256 |
257 <target name="tests.jar" depends="compile-tests"> | 257 <target name="tests.jar" depends="compile-tests"> |
258 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> | 258 <jar destfile="${build.dir}/tests.jar" basedir="${build.test.classes.dir}"/> |
259 </target> | 259 </target> |
260 </project> | 260 </project> |
OLD | NEW |