| OLD | NEW |
| 1 # Configuration used by | 1 # Configuration used by |
| 2 # https://chromium.googlesource.com/chromium/tools/build/+/0f611b202b0e/scripts/
slave/recipe_modules/skia/resources/generate_and_upload_doxygen.py | 2 # https://chromium.googlesource.com/chromium/tools/build/+/0f611b202b0e/scripts/
slave/recipe_modules/skia/resources/generate_and_upload_doxygen.py |
| 3 # to generate our Doxygen docs, which are then uploaded to | 3 # to generate our Doxygen docs, which are then uploaded to |
| 4 # http://chromium-skia-gm.commondatastorage.googleapis.com/doxygen/doxygen/html/
index.html | 4 # http://chromium-skia-gm.commondatastorage.googleapis.com/doxygen/doxygen/html/
index.html |
| 5 | 5 |
| 6 | 6 |
| 7 PROJECT_NAME = skia | 7 PROJECT_NAME = skia |
| 8 PROJECT_BRIEF = 2D Graphics Library | 8 PROJECT_BRIEF = 2D Graphics Library |
| 9 | 9 |
| 10 # These lines are overridden by | 10 # These lines are overridden by |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 GENERATE_LATEX = NO | 33 GENERATE_LATEX = NO |
| 34 | 34 |
| 35 # Good class diagrams require graphviz, but also more parameter tuning and | 35 # Good class diagrams require graphviz, but also more parameter tuning and |
| 36 # more build time than seems worthwhile. | 36 # more build time than seems worthwhile. |
| 37 CLASS_DIAGRAMS = YES | 37 CLASS_DIAGRAMS = YES |
| 38 # HAVE_DOT = YES | 38 # HAVE_DOT = YES |
| 39 # CLASS_GRAPH = YES | 39 # CLASS_GRAPH = YES |
| 40 # COLLABORATION_GRAPH = YES | 40 # COLLABORATION_GRAPH = YES |
| 41 # UML_LOOK = YES | 41 # UML_LOOK = YES |
| 42 # GRAPHICAL_HIERARCHY = YES | 42 # GRAPHICAL_HIERARCHY = YES |
| 43 | 43 |
| 44 # Make SkDEBUGCODE disappear, but not SK_OVERRIDE. | 44 # Make SkDEBUGCODE disappear. |
| 45 ENABLE_PREPROCESSING = YES | 45 ENABLE_PREPROCESSING = YES |
| 46 MACRO_EXPANSION = YES | 46 MACRO_EXPANSION = YES |
| 47 EXPAND_ONLY_PREDEF = YES | 47 EXPAND_ONLY_PREDEF = YES |
| 48 EXPAND_AS_DEFINED = SkDEBUGCODE | 48 EXPAND_AS_DEFINED = SkDEBUGCODE |
| 49 | 49 |
| 50 # experimental evil only! inflates build time by 10 minutes | 50 # experimental evil only! inflates build time by 10 minutes |
| 51 # SEARCH_INCLUDES = YES | 51 # SEARCH_INCLUDES = YES |
| 52 # INCLUDE_GRAPH = YES | 52 # INCLUDE_GRAPH = YES |
| 53 # INCLUDED_BY_GRAPH = YES | 53 # INCLUDED_BY_GRAPH = YES |
| 54 # DIRECTORY_GRAPH = YES | 54 # DIRECTORY_GRAPH = YES |
| 55 # INTERACTIVE_SVG = YES | 55 # INTERACTIVE_SVG = YES |
| 56 | 56 |
| 57 | 57 |
| OLD | NEW |