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

Unified Diff: editor/tools/features/com.google.dart.tools.deploy.feature_releng/build-common.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | editor/tools/features/com.google.dart.tools.deploy.feature_releng/build_rcp.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/features/com.google.dart.tools.deploy.feature_releng/build-common.xml
===================================================================
--- editor/tools/features/com.google.dart.tools.deploy.feature_releng/build-common.xml (revision 17084)
+++ editor/tools/features/com.google.dart.tools.deploy.feature_releng/build-common.xml (working copy)
@@ -78,6 +78,8 @@
build is only running on OS specific builds -->
<isset property="build.os" />
</condition>
+ <property name="unzip.tool" value="third_party/7zip/7za.exe"/>
+ <property name="unzip.arg" value="x"/>
</target>
<target name="setOSMac" if="build.os.mac">
<echo message="setup mac" />
@@ -93,6 +95,8 @@
build is only running on OS specific builds -->
<isset property="build.os" />
</condition>
+ <property name="unzip.tool" value="unzip"/>
+ <property name="unzip.arg" value="-q"/>
</target>
<target name="setOSLinux" if="build.os.linux">
<echo message="setup linux" />
@@ -108,6 +112,8 @@
build is only running on OS specific builds -->
<isset property="build.os" />
</condition>
+ <property name="unzip.tool" value="unzip"/>
+ <property name="unzip.arg" value="-q"/>
</target>
<!-- configure and validate the data location -->
« no previous file with comments | « no previous file | editor/tools/features/com.google.dart.tools.deploy.feature_releng/build_rcp.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698