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

Side by Side Diff: components/cronet/android/api/build.xml

Issue 2267173003: Remove deprecated UrlRequestContextConfig & HttpUrlRequestFactoryConfig (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + addressed commnents Created 4 years, 3 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
1 <project> 1 <project>
2 <target name="doc" description="generate documentation"> 2 <target name="doc" description="generate documentation">
3 <javadoc destdir="${doc.dir}" 3 <javadoc destdir="${doc.dir}"
4 overview="${overview}" 4 overview="${overview}"
5 bootclasspath="../../../../third_party/android_tools/sdk/platform s/android-23/android.jar:../../../../third_party/android_tools/sdk/extras/androi d/support/annotations/android-support-annotations.jar:${lib.java.dir}/cronet_jav adoc_classpath.jar" 5 bootclasspath="../../../../third_party/android_tools/sdk/platform s/android-23/android.jar:../../../../third_party/android_tools/sdk/extras/androi d/support/annotations/android-support-annotations.jar:${lib.java.dir}/cronet_jav adoc_classpath.jar"
6 docletpath="../../../../buildtools/android/doclava/jsilver.jar:.. /../../../buildtools/android/doclava/doclava.jar" 6 docletpath="../../../../buildtools/android/doclava/jsilver.jar:.. /../../../buildtools/android/doclava/doclava.jar"
7 > 7 >
8 <fileset dir="${source.dir}" defaultexcludes="yes"> 8 <fileset dir="${source.dir}" defaultexcludes="yes">
9 <include name="**/*.java"/> 9 <include name="**/*.java"/>
10 <!-- exclude legacy API --> 10 <!-- exclude legacy API -->
11 <exclude name="**/Chromium*.java"/> 11 <exclude name="**/Chromium*.java"/>
12 <exclude name="**/ChunkedWritableByteChannel*.java"/> 12 <exclude name="**/ChunkedWritableByteChannel*.java"/>
13 <exclude name="**/HttpUrl*.java"/> 13 <exclude name="**/HttpUrl*.java"/>
14 <exclude name="**/ResponseTooLargeException.java"/> 14 <exclude name="**/ResponseTooLargeException.java"/>
15 <exclude name="**/UrlRequestContextConfig.java"/>
16 <!-- This file is removed but it still appears in the checkout of one bot. See crbug.com/637887 --> 15 <!-- This file is removed but it still appears in the checkout of one bot. See crbug.com/637887 -->
17 <!-- TODO(xunjieli): Remove this. --> 16 <!-- TODO(xunjieli): Remove this. -->
18 <exclude name="**/RequestFinishedListener.java"/> 17 <exclude name="**/RequestFinishedListener.java"/>
19 </fileset> 18 </fileset>
20 <doclet name="com.google.doclava.Doclava"> 19 <doclet name="com.google.doclava.Doclava">
21 <param name="-title" /><param name="Cronet API"/> 20 <param name="-title" /><param name="Cronet API"/>
22 <!-- federation --> 21 <!-- federation -->
23 <param name="-federate" /><param name="Android"/> 22 <param name="-federate" /><param name="Android"/>
24 <param name="https://developer.android.com/"/> 23 <param name="https://developer.android.com/"/>
25 <param name="-federationapi"/><param name="Android"/> 24 <param name="-federationapi"/><param name="Android"/>
26 <param name="../../../../buildtools/android/doclava/current.txt"/> 25 <param name="../../../../buildtools/android/doclava/current.txt"/>
27 </doclet> 26 </doclet>
28 </javadoc> 27 </javadoc>
29 </target> 28 </target>
30 </project> 29 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698