Pointing to http://skia-autogen.googlecode.com/svn/docs/html/index.html in Doxyfile
[platform/upstream/libSkiaSharp.git] / Doxyfile
1 # To update the Doxygen output checked into the Skia subversion repo (which is
2 # browsable at http://skia-autogen.googlecode.com/svn/docs/html/index.html ), run:
3 # tools/update-doxygen.sh
4
5 PROJECT_NAME = skia
6 PROJECT_BRIEF = 2D Graphics Library
7 OUTPUT_DIRECTORY = ../docs
8 HTML_FOOTER = ../docs/static_footer.txt
9
10 EXTRACT_ALL = NO
11 INHERIT_DOCS = YES
12 INLINE_INHERITED_MEMB = NO
13 JAVADOC_AUTOBRIEF = YES
14 TAB_SIZE = 4
15 WARN_IF_UNDOCUMENTED = NO
16
17 # This file only creates documentation for the most important parts of the
18 # external-visible API.
19 INPUT = include/core include/effects
20 EXTRACT_PRIVATE = YES
21 EXTRACT_STATIC = YES
22
23 HTML_DYNAMIC_SECTIONS = NO
24 GENERATE_TREEVIEW = YES
25
26 GENERATE_LATEX = NO
27
28 # Good class diagrams require graphviz, but also more parameter tuning and
29 # more build time than seems worthwhile.
30 CLASS_DIAGRAMS = YES
31 # HAVE_DOT = YES
32 # CLASS_GRAPH = YES
33 # COLLABORATION_GRAPH = YES
34 # UML_LOOK = YES
35 # GRAPHICAL_HIERARCHY = YES 
36
37 # Make SkDEBUGCODE disappear, but not SK_OVERRIDE.
38 ENABLE_PREPROCESSING = YES
39 MACRO_EXPANSION = YES
40 EXPAND_ONLY_PREDEF = YES
41 EXPAND_AS_DEFINED = SkDEBUGCODE
42
43 # experimental evil only! inflates build time by 10 minutes
44 # SEARCH_INCLUDES = YES
45 # INCLUDE_GRAPH = YES
46 # INCLUDED_BY_GRAPH = YES
47 # DIRECTORY_GRAPH = YES
48 # INTERACTIVE_SVG = YES
49
50