OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # Doxyfile 1.7.6.1 | 5 # Doxyfile 1.7.6.1 |
6 # | 6 # |
7 # Specified below are only the values that differ from the defaults. To see the | 7 # Specified below are only the values that differ from the defaults. To see the |
8 # default values, run: | 8 # default values, run: |
9 # | 9 # |
10 # doxygen -g Doxyfile.defaults | 10 # doxygen -g Doxyfile.defaults |
11 | 11 |
12 | 12 |
13 # These entries will be modified by generate_docs.py | 13 # These entries will be modified by generate_docs.py |
14 OUTPUT_DIRECTORY = %(out_dirname)s | 14 OUTPUT_DIRECTORY = %(out_dirname)s |
15 INPUT = %(doc_dirname)s/c | 15 INPUT = %(doc_dirname)s/c |
| 16 STRIP_FROM_PATH = %(doc_dirname)s/c |
16 EXCLUDE = %(doc_dirname)s/c/pp_macros.h | 17 EXCLUDE = %(doc_dirname)s/c/pp_macros.h |
17 LAYOUT_FILE = %(script_dirname)s/DoxygenLayout.xml | 18 LAYOUT_FILE = %(script_dirname)s/DoxygenLayout.xml |
18 HTML_HEADER = %(script_dirname)s/header.html | 19 HTML_HEADER = %(script_dirname)s/header.html |
19 HTML_FOOTER = %(script_dirname)s/footer.html | 20 HTML_FOOTER = %(script_dirname)s/footer.html |
20 HTML_STYLESHEET = %(script_dirname)s/stylesheet.css | 21 HTML_STYLESHEET = %(script_dirname)s/stylesheet.css |
21 | 22 |
22 # These entries are fixed. | 23 # These entries are fixed. |
23 PROJECT_NAME = | 24 PROJECT_NAME = |
24 BRIEF_MEMBER_DESC = NO | 25 BRIEF_MEMBER_DESC = NO |
25 ABBREVIATE_BRIEF = "The $name class" \ | 26 ABBREVIATE_BRIEF = "The $name class" \ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 CLASS_DIAGRAMS = NO | 67 CLASS_DIAGRAMS = NO |
67 HAVE_DOT = YES | 68 HAVE_DOT = YES |
68 DOT_NUM_THREADS = 4 | 69 DOT_NUM_THREADS = 4 |
69 DOT_FONTNAME = FreeSans.ttf | 70 DOT_FONTNAME = FreeSans.ttf |
70 COLLABORATION_GRAPH = NO | 71 COLLABORATION_GRAPH = NO |
71 GROUP_GRAPHS = NO | 72 GROUP_GRAPHS = NO |
72 GRAPHICAL_HIERARCHY = NO | 73 GRAPHICAL_HIERARCHY = NO |
73 MAX_DOT_GRAPH_DEPTH = 1000 | 74 MAX_DOT_GRAPH_DEPTH = 1000 |
74 DOT_TRANSPARENT = YES | 75 DOT_TRANSPARENT = YES |
75 DOT_MULTI_TARGETS = NO | 76 DOT_MULTI_TARGETS = NO |
OLD | NEW |