summaryrefslogtreecommitdiffstats
path: root/components/cronet/android/java/build.xml
blob: b87f6156c213ff495367107f24dce722793e2ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<project>
  <target name="doc" description="generate documentation">
      <javadoc destdir="${doc.dir}"
               windowtitle="Cronet API"
               nohelp="yes"
               notree="yes"
               nodeprecated="yes"
               >
        <fileset dir="${source.dir}" defaultexcludes="yes">
          <include name="**/*.java"/>
          <!-- exclude legacy API -->
          <exclude name="**/Chromium*.java"/>
          <exclude name="**/ChunkedWritableByteChannel*.java"/>
          <exclude name="**/HttpUrl*.java"/>
        </fileset>
      </javadoc>
  </target>
</project>