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

Unified Diff: editor/build/create_analyzer.xml

Issue 22393002: First CL for removing our dependency on the checked-in binary for building (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | « editor/build/build.py ('k') | editor/tools/compile_analyzer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/build/create_analyzer.xml
diff --git a/editor/build/create_analyzer.xml b/editor/build/create_analyzer.xml
index 297d80c318fa1776cefe7377d65cc91ca1b0ad53..d7179a9da338b0a405f67832ddd92ce330f7468e 100644
--- a/editor/build/create_analyzer.xml
+++ b/editor/build/create_analyzer.xml
@@ -12,24 +12,24 @@
<target name="get-version">
<exec dir="../../tools"
- executable="testing/bin/windows/dart.exe"
+ executable="python.exe"
outputproperty="dart.version"
osfamily="windows">
- <arg value="version.dart" />
+ <arg value="print_version.py" />
</exec>
<exec dir="../../tools"
- executable="testing/bin/macos/dart"
+ executable="python"
outputproperty="dart.version"
osfamily="mac">
- <arg value="version.dart" />
+ <arg value="print_version.py" />
</exec>
<exec dir="../../tools"
- executable="testing/bin/linux/dart"
+ executable="python"
outputproperty="dart.version"
osfamily="unix"
failonerror="false"
errorproperty="ignore.prop">
- <arg value="version.dart" />
+ <arg value="print_version.py" />
</exec>
<echo message="verison = ${dart.version}" />
« no previous file with comments | « editor/build/build.py ('k') | editor/tools/compile_analyzer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698