epoger@google.com | b0c5e07 | 2011-12-06 14:52:38 +0000 | [diff] [blame] | 1 | # To update the Doxygen output checked into the Skia subversion repo (which is |
rmistry@google.com | 6e5d63a | 2012-07-03 11:35:07 +0000 | [diff] [blame] | 2 | # browsable at http://skia-autogen.googlecode.com/svn/docs/html/index.html ), run: |
epoger@google.com | b0c5e07 | 2011-12-06 14:52:38 +0000 | [diff] [blame] | 3 | # tools/update-doxygen.sh |
epoger@google.com | c62b0f8 | 2011-12-02 17:13:36 +0000 | [diff] [blame] | 4 | |
tomhudson@google.com | 05fffdc | 2011-12-01 20:41:24 +0000 | [diff] [blame] | 5 | PROJECT_NAME = skia |
| 6 | PROJECT_BRIEF = 2D Graphics Library |
epoger@google.com | c62b0f8 | 2011-12-02 17:13:36 +0000 | [diff] [blame] | 7 | OUTPUT_DIRECTORY = ../docs |
epoger@google.com | b0c5e07 | 2011-12-06 14:52:38 +0000 | [diff] [blame] | 8 | HTML_FOOTER = ../docs/static_footer.txt |
tomhudson@google.com | 05fffdc | 2011-12-01 20:41:24 +0000 | [diff] [blame] | 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 | |