| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 <!-- create the samples directory --> | 181 <!-- create the samples directory --> |
| 182 <property name="samples.out.dir" value="${build.stage.include.dir}/sampl
es" /> | 182 <property name="samples.out.dir" value="${build.stage.include.dir}/sampl
es" /> |
| 183 | 183 |
| 184 <!-- delete old samples --> | 184 <!-- delete old samples --> |
| 185 <delete dir="${samples.out.dir}"/> | 185 <delete dir="${samples.out.dir}"/> |
| 186 | 186 |
| 187 <!-- copy specific samples --> | 187 <!-- copy specific samples --> |
| 188 <copy todir="${samples.out.dir}"> | 188 <copy todir="${samples.out.dir}"> |
| 189 <fileset dir="${build.source.root}/samples"> | 189 <fileset dir="${build.source.root}/samples"> |
| 190 <include name="dartiverse_search/**"/> | 190 <include name="dartiverse_search/**"/> |
| 191 | |
| 192 <include name="sunflower/**"/> | 191 <include name="sunflower/**"/> |
| 192 <include name="pop_pop_win/**"/> |
| 193 | 193 |
| 194 <!-- the READMEs are out of date --> | 194 <!-- the READMEs are out of date --> |
| 195 <exclude name="**/README"/> | 195 <exclude name="**/README"/> |
| 196 | 196 |
| 197 <!-- the included samples aren't under revision control --> | 197 <!-- the included samples aren't under revision control --> |
| 198 <exclude name="**/.gitignore"/> | 198 <exclude name="**/.gitignore"/> |
| 199 | 199 |
| 200 <!-- We do not need to ship the test directories. --> | 200 <!-- We do not need to ship the test directories. --> |
| 201 <exclude name="**/test/"/> | 201 <exclude name="**/test/"/> |
| 202 </fileset> | 202 </fileset> |
| 203 <fileset dir="${build.source.root}/samples/third_party"> | 203 <fileset dir="${build.source.root}/samples/third_party"> |
| 204 <include name="todomvc/**"/> | 204 <include name="todomvc/**"/> |
| 205 <include name="angular_todo/**"/> | 205 <include name="angular_todo/**"/> |
| 206 <include name="pop-pop-win/**"/> | |
| 207 <exclude name="**/tool/"/> | 206 <exclude name="**/tool/"/> |
| 208 <exclude name="**/.git/"/> | 207 <exclude name="**/.git/"/> |
| 209 <exclude name="**/.gitignore"/> | 208 <exclude name="**/.gitignore"/> |
| 210 <exclude name="**/test/"/> | 209 <exclude name="**/test/"/> |
| 211 <exclude name="**/app_package/"/> | 210 <exclude name="**/app_package/"/> |
| 212 <exclude name="**/resouce/"/> | 211 <exclude name="**/resouce/"/> |
| 213 | 212 |
| 214 </fileset> | 213 </fileset> |
| 215 </copy> | 214 </copy> |
| 216 | 215 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 }</echo> | 478 }</echo> |
| 480 </target> | 479 </target> |
| 481 | 480 |
| 482 <!-- - - - - - - - - - - - - - - - - - | 481 <!-- - - - - - - - - - - - - - - - - - |
| 483 target: doDeploy_rcp | 482 target: doDeploy_rcp |
| 484 - - - - - - - - - - - - - - - - - --> | 483 - - - - - - - - - - - - - - - - - --> |
| 485 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 484 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 486 </target> | 485 </target> |
| 487 | 486 |
| 488 </project> | 487 </project> |
| OLD | NEW |