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

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: Updated cf. comments 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
« no previous file with comments | « tests/compiler/dart2js/mirrors_test.dart ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index c770f32a7f4cbc1c43d458893e8977805005daab..5d467be30101d3d9d52e3ab17f6b5775ca727ccf 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/'"),
+ ("final bool IN_SDK = false;",
+ "final bool IN_SDK = true;"),
])
# Create and populate lib/isolate
« no previous file with comments | « tests/compiler/dart2js/mirrors_test.dart ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698