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

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: Address comments 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 notree="yes"
7 nodeprecated="yes"
8 >
9 <fileset dir="${source.dir}" defaultexcludes="yes">
10 <include name="**/*.java"/>
11 <!-- exclude legacy API -->
12 <exclude name="**/Chromium*.java"/>
13 <exclude name="**/ChunkedWritableByteChannel*.java"/>
14 <exclude name="**/HttpUrl*.java"/>
15 </fileset>
16 </javadoc>
17 </target>
18 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698