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

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

Issue 1557233003: Download doclava when building for Android and use to build cronet Javadocs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert back to Patch Set 10 Created 4 years, 8 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 | « build/android/download_doclava.py ('k') | components/cronet/android/api/package-list » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet/android/api/build.xml
diff --git a/components/cronet/android/api/build.xml b/components/cronet/android/api/build.xml
index cdf8aada738106ff0b5f63049cd5c6e6c2804416..164e75fd527079b3fd79cd5c43437c48f59c3ea2 100644
--- a/components/cronet/android/api/build.xml
+++ b/components/cronet/android/api/build.xml
@@ -2,13 +2,8 @@
<target name="doc" description="generate documentation">
<javadoc destdir="${doc.dir}"
overview="${overview}"
- windowtitle="Cronet API"
- nohelp="yes"
- notree="yes"
- nodeprecated="yes"
- linkoffline="https://developer.android.com/reference ."
bootclasspath="../../../../third_party/android_tools/sdk/platforms/android-23/android.jar:../../../../third_party/android_tools/sdk/extras/android/support/annotations/android-support-annotations.jar:${lib.java.dir}/cronet_javadoc_classpath.jar"
- use="true"
+ docletpath="../../../../buildtools/android/doclava/jsilver.jar:../../../../buildtools/android/doclava/doclava.jar"
>
<fileset dir="${source.dir}" defaultexcludes="yes">
<include name="**/*.java"/>
@@ -16,7 +11,18 @@
<exclude name="**/Chromium*.java"/>
<exclude name="**/ChunkedWritableByteChannel*.java"/>
<exclude name="**/HttpUrl*.java"/>
+ <exclude name="**/ResponseTooLargeException.java"/>
+ <exclude name="**/UrlRequestContextConfig.java"/>
+ <exclude name="**/UserAgent.java"/>
</fileset>
+ <doclet name="com.google.doclava.Doclava">
+ <param name="-title" /><param name="Cronet API"/>
+ <!-- federation -->
+ <param name="-federate" /><param name="Android"/>
+ <param name="https://developer.android.com/"/>
+ <param name="-federationapi"/><param name="Android"/>
+ <param name="../../../../buildtools/android/doclava/current.txt"/>
+ </doclet>
</javadoc>
</target>
</project>
« no previous file with comments | « build/android/download_doclava.py ('k') | components/cronet/android/api/package-list » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698