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/cpp \ | 15 INPUT = %(doc_dirname)s/cpp \ |
16 %(doc_dirname)s/utility | 16 %(doc_dirname)s/utility |
| 17 STRIP_FROM_PATH = %(doc_dirname)s/cpp \ |
| 18 %(doc_dirname)s/utility |
17 EXCLUDE = %(doc_dirname)s/cpp/array_output.h \ | 19 EXCLUDE = %(doc_dirname)s/cpp/array_output.h \ |
18 %(doc_dirname)s/cpp/output_traits.h \ | 20 %(doc_dirname)s/cpp/output_traits.h \ |
19 %(doc_dirname)s/utility/completion_callback_factory_thr
ead_traits.h | 21 %(doc_dirname)s/utility/completion_callback_factory_thr
ead_traits.h |
20 LAYOUT_FILE = %(script_dirname)s/DoxygenLayout.xml | 22 LAYOUT_FILE = %(script_dirname)s/DoxygenLayout.xml |
21 HTML_HEADER = %(script_dirname)s/header.html | 23 HTML_HEADER = %(script_dirname)s/header.html |
22 HTML_FOOTER = %(script_dirname)s/footer.html | 24 HTML_FOOTER = %(script_dirname)s/footer.html |
23 HTML_STYLESHEET = %(script_dirname)s/stylesheet.css | 25 HTML_STYLESHEET = %(script_dirname)s/stylesheet.css |
24 | 26 |
25 # These entries are fixed. | 27 # These entries are fixed. |
26 PROJECT_NAME = | 28 PROJECT_NAME = |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 CLASS_DIAGRAMS = NO | 69 CLASS_DIAGRAMS = NO |
68 HAVE_DOT = YES | 70 HAVE_DOT = YES |
69 DOT_NUM_THREADS = 4 | 71 DOT_NUM_THREADS = 4 |
70 DOT_FONTNAME = FreeSans.ttf | 72 DOT_FONTNAME = FreeSans.ttf |
71 COLLABORATION_GRAPH = NO | 73 COLLABORATION_GRAPH = NO |
72 GROUP_GRAPHS = NO | 74 GROUP_GRAPHS = NO |
73 DOT_GRAPH_MAX_NODES = 57 | 75 DOT_GRAPH_MAX_NODES = 57 |
74 MAX_DOT_GRAPH_DEPTH = 1000 | 76 MAX_DOT_GRAPH_DEPTH = 1000 |
75 DOT_TRANSPARENT = YES | 77 DOT_TRANSPARENT = YES |
76 DOT_MULTI_TARGETS = NO | 78 DOT_MULTI_TARGETS = NO |
OLD | NEW |