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

Unified Diff: utils/apidoc/apidoc

Issue 9319001: Integrate VM IO libraries and search box into apidoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Review. Created 8 years, 11 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 | « utils/apidoc/.gitignore ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/apidoc
diff --git a/utils/apidoc/apidoc b/utils/apidoc/apidoc
index c2730b0106049cbfdba5191b01c207580bcd6c23..e09d3e8ed63c0a2c2917dc658da73f6739f726ad 100755
--- a/utils/apidoc/apidoc
+++ b/utils/apidoc/apidoc
@@ -38,6 +38,12 @@ if [ -d "docs" ]; then
fi
mkdir docs
+# Bundle up the IO libraries so dartdoc can find them.
+# TODO(rnystrom): Having to do this is gross. Ideally apidoc should walk the
+# sources under runtime/bin/ directly instead of relying on this.
+grep "'*.dart'" ../../runtime/bin/io_sources.gypi | sed s/\',//g | \
+ sed s,\',../../runtime/bin/,g | xargs cat > io_libs.dart
+
# Copy the static files over.
cp ../dartdoc/static/* docs
# Overlay any apidoc-specific ones.
« no previous file with comments | « utils/apidoc/.gitignore ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698