Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: editor/tools/features/com.google.dart.tools.deploy.feature_releng/build_rcp.xml

Issue 11908004: Fix an issue with the setupDevWorkspace target on windows. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 <target name="installSdk" unless="build.dart.sdk" depends="setOS"> 239 <target name="installSdk" unless="build.dart.sdk" depends="setOS">
240 <echoProperty propertyname="build.dart.sdk"/> 240 <echoProperty propertyname="build.dart.sdk"/>
241 241
242 <get src="http://gsdview.appspot.com/dart-editor-archive-continuous/late st/dartsdk-${osfamily}-32.zip" 242 <get src="http://gsdview.appspot.com/dart-editor-archive-continuous/late st/dartsdk-${osfamily}-32.zip"
243 dest="${build.dart.sdk.zip}" 243 dest="${build.dart.sdk.zip}"
244 usetimestamp="true" /> 244 usetimestamp="true" />
245 245
246 <echo message="unzipping ${build.dart.sdk.zip} to ${build.stage.include. dir}"/> 246 <echo message="unzipping ${build.dart.sdk.zip} to ${build.stage.include. dir}"/>
247 <mkdir dir="${build.stage.include.dir}" /> 247 <mkdir dir="${build.stage.include.dir}" />
248 <delete dir="${build.stage.include.dir}/dart-sdk"/> 248 <delete dir="${build.stage.include.dir}/dart-sdk"/>
249 <exec executable="unzip" dir="${build.stage.include.dir}"> 249 <exec executable="${unzip.tool}" dir="${build.stage.include.dir}">
250 <arg value="-q"/> 250 <arg value="${unzip.arg}"/>
251 <arg value="${build.dart.sdk.zip}"/> 251 <arg value="${build.dart.sdk.zip}"/>
252 </exec> 252 </exec>
253 </target> 253 </target>
254 254
255 <!-- - - - - - - - - - - - - - - - - - 255 <!-- - - - - - - - - - - - - - - - - -
256 target: setupDevWorkspace 256 target: setupDevWorkspace
257 - - - - - - - - - - - - - - - - - --> 257 - - - - - - - - - - - - - - - - - -->
258 <target name="setupDevWorkspace" 258 <target name="setupDevWorkspace"
259 depends="initDevWorkspace, buildSamples, installSdk"> 259 depends="initDevWorkspace, buildSamples, installSdk">
260 </target> 260 </target>
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 }</echo> 458 }</echo>
459 </target> 459 </target>
460 460
461 <!-- - - - - - - - - - - - - - - - - - 461 <!-- - - - - - - - - - - - - - - - - -
462 target: doDeploy_rcp 462 target: doDeploy_rcp
463 - - - - - - - - - - - - - - - - - --> 463 - - - - - - - - - - - - - - - - - -->
464 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp"> 464 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp">
465 </target> 465 </target>
466 466
467 </project> 467 </project>
OLDNEW
« no previous file with comments | « editor/tools/features/com.google.dart.tools.deploy.feature_releng/build-common.xml ('k') | tools/create_editor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698