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

Unified Diff: components/cronet/android/java/build.xml

Issue 1148263004: [Cronet] Generate Javadoc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
Index: components/cronet/android/java/build.xml
diff --git a/components/cronet/android/java/build.xml b/components/cronet/android/java/build.xml
new file mode 100644
index 0000000000000000000000000000000000000000..069662190c8c72953d11eed9708890dc7f47263c
--- /dev/null
+++ b/components/cronet/android/java/build.xml
@@ -0,0 +1,19 @@
+<project>
+ <target name="doc" description="generate documentation">
+ <javadoc destdir="${doc.dir}"
+ windowtitle="Cronet API"
+ nohelp="yes"
+ noindex="yes"
mef 2015/06/03 18:25:01 Not sure what noindex does, but it would make sens
xunjieli 2015/06/03 20:19:34 Done. Removed.
+ notree="yes"
+ nodeprecated="yes"
+ >
+ <fileset dir="${source.dir}" defaultexcludes="yes">
+ <include name="**/*.java"/>
mef 2015/06/03 18:25:01 Should we generate javadoc just for interface file
xunjieli 2015/06/03 20:19:34 Looking at the internal code base, our current emb
mef 2015/06/03 22:00:54 Sounds good, as long as only 'public' classes get
xunjieli 2015/06/04 13:37:35 Confirmed that non-public classes are not included
+ <!-- exclude legacy API -->
+ <exclude name="**/Chromium*.java"/>
+ <exclude name="**/ChunkedWritableByteChannel*.java"/>
+ <exclude name="**/HttpUrl*.java"/>
+ </fileset>
+ </javadoc>
+ </target>
+</project>

Powered by Google App Engine
This is Rietveld 408576698