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

Side by Side 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, 6 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
OLDNEW
(Empty)
1 <project>
2 <target name="doc" description="generate documentation">
3 <javadoc destdir="${doc.dir}"
4 windowtitle="Cronet API"
5 nohelp="yes"
6 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.
7 notree="yes"
8 nodeprecated="yes"
9 >
10 <fileset dir="${source.dir}" defaultexcludes="yes">
11 <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
12 <!-- exclude legacy API -->
13 <exclude name="**/Chromium*.java"/>
14 <exclude name="**/ChunkedWritableByteChannel*.java"/>
15 <exclude name="**/HttpUrl*.java"/>
16 </fileset>
17 </javadoc>
18 </target>
19 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698