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

Unified Diff: tools/create_sdk.py

Issue 10780030: Dartdoc and apidoc updated to use Path. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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
Index: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index c770f32a7f4cbc1c43d458893e8977805005daab..9db3a19a92b8845cbd006dc2a4d9530afd04a1a5 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -348,14 +348,8 @@ def Main(argv):
ReplaceInFiles([
join(LIB, 'dartdoc', 'dartdoc.dart'),
], [
- ("scriptDir, '../'",
- "scriptDir, '../dart2js/lib/'"),
- ])
- ReplaceInFiles([
- join(LIB, 'dartdoc', 'dartdoc.dart'),
- ], [
- ("scriptDir, '../../'",
- "scriptDir, '../dart2js/'"),
+ ("'../..'",
Bill Hesse 2012/07/17 13:42:13 How about replacing "final String dart2jsDir = '..
Johnni Winther 2012/07/19 08:37:07 Done.
+ "'../dart2js/'"),
])
# Create and populate lib/isolate

Powered by Google App Engine
This is Rietveld 408576698