commit-bot@chromium.org | 76ac7f8 | 2014-05-15 14:41:00 +0000 | [diff] [blame] | 1 | # Configuration used by |
borenet | af44e70 | 2014-10-14 04:44:44 -0700 | [diff] [blame] | 2 | # https://chromium.googlesource.com/chromium/tools/build/+/0f611b202b0e/scripts/slave/recipe_modules/skia/resources/generate_and_upload_doxygen.py |
commit-bot@chromium.org | 76ac7f8 | 2014-05-15 14:41:00 +0000 | [diff] [blame] | 3 | # to generate our Doxygen docs, which are then uploaded to |
borenet | 777ee88 | 2016-10-04 13:23:57 -0700 | [diff] [blame] | 4 | # http://skia-doc.commondatastorage.googleapis.com/doxygen/doxygen/html/index.html |
commit-bot@chromium.org | 76ac7f8 | 2014-05-15 14:41:00 +0000 | [diff] [blame] | 5 | |
epoger@google.com | c62b0f8 | 2011-12-02 17:13:36 +0000 | [diff] [blame] | 6 | |
halcanary | ee2a8ee | 2015-05-19 10:21:29 -0700 | [diff] [blame] | 7 | PROJECT_NAME = Skia |
tomhudson@google.com | 05fffdc | 2011-12-01 20:41:24 +0000 | [diff] [blame] | 8 | PROJECT_BRIEF = 2D Graphics Library |
commit-bot@chromium.org | 76ac7f8 | 2014-05-15 14:41:00 +0000 | [diff] [blame] | 9 | |
halcanary | ee2a8ee | 2015-05-19 10:21:29 -0700 | [diff] [blame] | 10 | PROJECT_LOGO = https://skia.org/res/img/logo.png |
| 11 | |
commit-bot@chromium.org | 76ac7f8 | 2014-05-15 14:41:00 +0000 | [diff] [blame] | 12 | # These lines are overridden by |
borenet | af44e70 | 2014-10-14 04:44:44 -0700 | [diff] [blame] | 13 | # https://chromium.googlesource.com/chromium/tools/build/+/0f611b202b0e/scripts/slave/recipe_modules/skia/resources/generate_and_upload_doxygen.py |
commit-bot@chromium.org | 76ac7f8 | 2014-05-15 14:41:00 +0000 | [diff] [blame] | 14 | # but they are needed in case someone wants to generate the doxygen manually |
| 15 | # for some reason. |
epoger@google.com | c62b0f8 | 2011-12-02 17:13:36 +0000 | [diff] [blame] | 16 | OUTPUT_DIRECTORY = ../docs |
epoger@google.com | b0c5e07 | 2011-12-06 14:52:38 +0000 | [diff] [blame] | 17 | HTML_FOOTER = ../docs/static_footer.txt |
tomhudson@google.com | 05fffdc | 2011-12-01 20:41:24 +0000 | [diff] [blame] | 18 | |
| 19 | EXTRACT_ALL = NO |
| 20 | INHERIT_DOCS = YES |
| 21 | INLINE_INHERITED_MEMB = NO |
| 22 | JAVADOC_AUTOBRIEF = YES |
| 23 | TAB_SIZE = 4 |
| 24 | WARN_IF_UNDOCUMENTED = NO |
| 25 | |
| 26 | # This file only creates documentation for the most important parts of the |
| 27 | # external-visible API. |
commit-bot@chromium.org | 19dff99 | 2014-03-07 16:20:36 +0000 | [diff] [blame] | 28 | INPUT = include/core include/effects include/gpu |
tomhudson@google.com | 05fffdc | 2011-12-01 20:41:24 +0000 | [diff] [blame] | 29 | EXTRACT_PRIVATE = YES |
| 30 | EXTRACT_STATIC = YES |
| 31 | |
| 32 | HTML_DYNAMIC_SECTIONS = NO |
| 33 | GENERATE_TREEVIEW = YES |
| 34 | |
| 35 | GENERATE_LATEX = NO |
| 36 | |
| 37 | # Good class diagrams require graphviz, but also more parameter tuning and |
| 38 | # more build time than seems worthwhile. |
| 39 | CLASS_DIAGRAMS = YES |
| 40 | # HAVE_DOT = YES |
| 41 | # CLASS_GRAPH = YES |
| 42 | # COLLABORATION_GRAPH = YES |
| 43 | # UML_LOOK = YES |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 44 | # GRAPHICAL_HIERARCHY = YES |
tomhudson@google.com | 05fffdc | 2011-12-01 20:41:24 +0000 | [diff] [blame] | 45 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 46 | # Make SkDEBUGCODE disappear. |
tomhudson@google.com | 05fffdc | 2011-12-01 20:41:24 +0000 | [diff] [blame] | 47 | ENABLE_PREPROCESSING = YES |
| 48 | MACRO_EXPANSION = YES |
| 49 | EXPAND_ONLY_PREDEF = YES |
| 50 | EXPAND_AS_DEFINED = SkDEBUGCODE |
| 51 | |
| 52 | # experimental evil only! inflates build time by 10 minutes |
| 53 | # SEARCH_INCLUDES = YES |
| 54 | # INCLUDE_GRAPH = YES |
| 55 | # INCLUDED_BY_GRAPH = YES |
| 56 | # DIRECTORY_GRAPH = YES |
| 57 | # INTERACTIVE_SVG = YES |
| 58 | |
| 59 | |