OLD | NEW |
1 <!-- | 1 <!-- |
2 This build script will build the Dart RCP and Dart update site. | 2 This build script will build the Dart RCP and Dart update site. |
3 | 3 |
4 This script will setup the PDE build structure and then call into the PDE | 4 This script will setup the PDE build structure and then call into the PDE |
5 build system. The PDE build system has to run under Eclipse. | 5 build system. The PDE build system has to run under Eclipse. |
6 --> | 6 --> |
7 <project name="build_dart" default="build_rcp"> | 7 <project name="build_dart" default="build_rcp"> |
8 | 8 |
9 <import file="build-common.xml" /> | 9 <import file="build-common.xml" /> |
10 | 10 |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 <copyDartLib name="coreimpl" dir="${build.tmp}/lib/core-dartc" libfile="
corelib_impl.dart"/> | 237 <copyDartLib name="coreimpl" dir="${build.tmp}/lib/core-dartc" libfile="
corelib_impl.dart"/> |
238 | 238 |
239 <!-- dart:dom --> | 239 <!-- dart:dom --> |
240 <copyDartLib name="dom" dir="${build.source.root}/client/dom"/> | 240 <copyDartLib name="dom" dir="${build.source.root}/client/dom"/> |
241 | 241 |
242 <!-- dart:html --> | 242 <!-- dart:html --> |
243 <copyDartLib name="html" dir="${build.source.root}/client/html"/> | 243 <copyDartLib name="html" dir="${build.source.root}/client/html"/> |
244 <copyDartLib name="htmlimpl" dir="${build.source.root}/client/html"/> | 244 <copyDartLib name="htmlimpl" dir="${build.source.root}/client/html"/> |
245 | 245 |
246 <!-- dart:json --> | 246 <!-- dart:json --> |
247 <copyDartLib name="json" dir="${build.source.root}/client/json"/> | 247 <copyDartLib name="json" dir="${build.source.root}/lib/json"/> |
248 | 248 |
249 <!-- dart:builtin --> | 249 <!-- dart:builtin --> |
250 <copy todir="${libraries.out.dir}/builtin"> | 250 <copy todir="${libraries.out.dir}/builtin"> |
251 <fileset dir="${build.source.root}/runtime/bin" includes="builtin.da
rt"/> | 251 <fileset dir="${build.source.root}/runtime/bin" includes="builtin.da
rt"/> |
252 </copy> | 252 </copy> |
253 | 253 |
254 <!-- dart:nativewrappers --> | 254 <!-- dart:nativewrappers --> |
255 <mkdir dir="${libraries.out.dir}/nativewrappers"/> | 255 <mkdir dir="${libraries.out.dir}/nativewrappers"/> |
256 <echo file="${libraries.out.dir}/nativewrappers/nativewrappers.dart"> | 256 <echo file="${libraries.out.dir}/nativewrappers/nativewrappers.dart"> |
257 #library("nativewrappers"); | 257 #library("nativewrappers"); |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 </copy> | 627 </copy> |
628 </target> | 628 </target> |
629 | 629 |
630 <!-- - - - - - - - - - - - - - - - - - | 630 <!-- - - - - - - - - - - - - - - - - - |
631 target: doDeploy_rcp | 631 target: doDeploy_rcp |
632 - - - - - - - - - - - - - - - - - --> | 632 - - - - - - - - - - - - - - - - - --> |
633 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 633 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
634 </target> | 634 </target> |
635 | 635 |
636 </project> | 636 </project> |
OLD | NEW |