| 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 <include name="json/**" /> | 402 <include name="json/**" /> |
| 403 </fileset> | 403 </fileset> |
| 404 </copy> | 404 </copy> |
| 405 | 405 |
| 406 <!-- com.google.dart.thirdparty_test --> | 406 <!-- com.google.dart.thirdparty_test --> |
| 407 <property name="dart.thirdparty_test.dir" | 407 <property name="dart.thirdparty_test.dir" |
| 408 value="${build.stage.plugins}/com.google.dart.thirdparty_test"
/> | 408 value="${build.stage.plugins}/com.google.dart.thirdparty_test"
/> |
| 409 <copy todir="${dart.thirdparty_test.dir}/lib"> | 409 <copy todir="${dart.thirdparty_test.dir}/lib"> |
| 410 <fileset dir="${build.source.root}/third_party"> | 410 <fileset dir="${build.source.root}/third_party"> |
| 411 <include name="fest/**" /> | 411 <include name="fest/**" /> |
| 412 <include name="hamcrest/**" /> | |
| 413 <include name="mockito/**" /> | 412 <include name="mockito/**" /> |
| 414 </fileset> | 413 </fileset> |
| 415 </copy> | 414 </copy> |
| 416 | 415 |
| 417 <!-- com.google.dart.compiler.js --> | 416 <!-- com.google.dart.compiler.js --> |
| 418 <property name="dart.compiler.js.dir" | 417 <property name="dart.compiler.js.dir" |
| 419 value="${build.stage.plugins}/com.google.dart.compiler.js" /> | 418 value="${build.stage.plugins}/com.google.dart.compiler.js" /> |
| 420 <mkdir dir="${dart.compiler.js.dir}/src-compiler" /> | 419 <mkdir dir="${dart.compiler.js.dir}/src-compiler" /> |
| 421 <copy todir="${dart.compiler.js.dir}/src-compiler"> | 420 <copy todir="${dart.compiler.js.dir}/src-compiler"> |
| 422 <fileset dir="${build.source.root}/compiler/java" /> | 421 <fileset dir="${build.source.root}/compiler/java" /> |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 }</echo> | 477 }</echo> |
| 479 </target> | 478 </target> |
| 480 | 479 |
| 481 <!-- - - - - - - - - - - - - - - - - - | 480 <!-- - - - - - - - - - - - - - - - - - |
| 482 target: doDeploy_rcp | 481 target: doDeploy_rcp |
| 483 - - - - - - - - - - - - - - - - - --> | 482 - - - - - - - - - - - - - - - - - --> |
| 484 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 483 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 485 </target> | 484 </target> |
| 486 | 485 |
| 487 </project> | 486 </project> |
| OLD | NEW |