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

Side by Side Diff: utils/apidoc/mdn/extract.sh

Issue 10889017: Repair bitrot in the utils/apidoc/mdn/ code. It now runs all the way through, (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 ../../../frog/minfrog --out=output/extract.dart.js --enable_type_checks --compil e-only extract.dart 1
2 BUILT_DIR=../../../out/ReleaseIA32
3 DART2JS=$BUILT_DIR/dart2js
4 DARTVM=$BUILT_DIR/dart
5
6 $DART2JS -ooutput/extract.dart.js -c extract.dart
2 node extractRunner.js 7 node extractRunner.js
3 ../../../frog/minfrog postProcess.dart 8
4 ../../../frog/minfrog prettyPrint.dart 9 # Read database.json,
10 # write database.filtered.json (with "best" entries)
11 # and obsolete.json (with entries marked obsolete).
12 $DARTVM postProcess.dart
13
14 # Create database.html, examples.html, and obsolete.html.
15 $DARTVM prettyPrint.dart
5 16
6 # Copy up the final output to the main MDN directory so we can check it in. 17 # Copy up the final output to the main MDN directory so we can check it in.
7 cp output/database.filtered.json database.json 18 cp output/database.filtered.json database.json
8 cp output/obsolete.json . 19 cp output/obsolete.json .
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698