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

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

Issue 1361163002: remove docgen remnants from repo, update CHANGELOG (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: remove unused code Created 5 years, 2 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
« no previous file with comments | « utils/apidoc/mdn/extract.dart ('k') | utils/apidoc/mdn/extractRunner.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
7 node extractRunner.js
8
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
16
17 # Copy up the final output to the main MDN directory so we can check it in.
18 cp output/database.filtered.json database.json
19 cp output/obsolete.json .
OLDNEW
« no previous file with comments | « utils/apidoc/mdn/extract.dart ('k') | utils/apidoc/mdn/extractRunner.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698