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 PROJECT_LOGO = https://skia.org/res/img/logo.png |
| 11 |
10 # These lines are overridden by | 12 # These lines are overridden by |
11 # https://chromium.googlesource.com/chromium/tools/build/+/0f611b202b0e/scripts/
slave/recipe_modules/skia/resources/generate_and_upload_doxygen.py | 13 # https://chromium.googlesource.com/chromium/tools/build/+/0f611b202b0e/scripts/
slave/recipe_modules/skia/resources/generate_and_upload_doxygen.py |
12 # but they are needed in case someone wants to generate the doxygen manually | 14 # but they are needed in case someone wants to generate the doxygen manually |
13 # for some reason. | 15 # for some reason. |
14 OUTPUT_DIRECTORY = ../docs | 16 OUTPUT_DIRECTORY = ../docs |
15 HTML_FOOTER = ../docs/static_footer.txt | 17 HTML_FOOTER = ../docs/static_footer.txt |
16 | 18 |
17 EXTRACT_ALL = NO | 19 EXTRACT_ALL = NO |
18 INHERIT_DOCS = YES | 20 INHERIT_DOCS = YES |
19 INLINE_INHERITED_MEMB = NO | 21 INLINE_INHERITED_MEMB = NO |
(...skipping 28 matching lines...) Expand all Loading... |
48 EXPAND_AS_DEFINED = SkDEBUGCODE | 50 EXPAND_AS_DEFINED = SkDEBUGCODE |
49 | 51 |
50 # experimental evil only! inflates build time by 10 minutes | 52 # experimental evil only! inflates build time by 10 minutes |
51 # SEARCH_INCLUDES = YES | 53 # SEARCH_INCLUDES = YES |
52 # INCLUDE_GRAPH = YES | 54 # INCLUDE_GRAPH = YES |
53 # INCLUDED_BY_GRAPH = YES | 55 # INCLUDED_BY_GRAPH = YES |
54 # DIRECTORY_GRAPH = YES | 56 # DIRECTORY_GRAPH = YES |
55 # INTERACTIVE_SVG = YES | 57 # INTERACTIVE_SVG = YES |
56 | 58 |
57 | 59 |
OLD | NEW |