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

Unified Diff: tools/create_sdk.py

Issue 8972004: Rename and fix json frog library in SDK (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years 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 | « frog/reader.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
===================================================================
--- tools/create_sdk.py (revision 2445)
+++ tools/create_sdk.py (working copy)
@@ -209,8 +209,7 @@
#
# Create and populate lib/json.
#
-
- json_frog_dest_dir = join(LIB, 'json', 'frog')
+ json_frog_dest_dir = join(LIB, 'json')
dgrove 2011/12/16 17:55:19 This should be json_dest_dir.
json_compiler_dest_dir = join(LIB, 'json', 'compiler')
os.makedirs(json_frog_dest_dir)
os.makedirs(json_compiler_dest_dir)
@@ -223,15 +222,11 @@
copyfile(join(HOME, 'compiler', filename),
join(json_compiler_dest_dir, os.path.basename(filename)))
- # Create json_compiler.dart and json_frog.dart from whole cloth.
+ # Create json_compiler.dart from whole cloth.
dest_file = open(join(LIB, 'json', 'json_compiler.dart'), 'w')
dest_file.write('#library("dart:json");\n')
dest_file.write('#import("compiler/json.dart");\n')
dest_file.close()
- dest_file = open(join(LIB, 'json', 'json_frog.dart'), 'w')
- dest_file.write('#library("dart:json");\n')
- dest_file.write('#import("frog/json.dart");\n')
- dest_file.close()
#
# Create and populate lib/dom.
« no previous file with comments | « frog/reader.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698