Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(755)

Side by Side Diff: native_client_sdk/src/doc/doxygen/Doxyfile.c.template

Issue 136033007: [NaCl SDK Docs] Simplify PPAPI documentation generation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # Doxyfile 1.7.6.1
6 #
7 # Specified below are only the values that differ from the defaults. To see the
8 # default values, run:
9 #
10 # doxygen -g Doxyfile.defaults
11
12
13 # These entries will be modified by generate_docs.py
14 OUTPUT_DIRECTORY = %(out_dirname)s
15 INPUT = %(doc_dirname)s/c
16 EXCLUDE = %(doc_dirname)s/c/pp_macros.h
17
18 # These entries are fixed.
19 PROJECT_NAME =
20 BRIEF_MEMBER_DESC = NO
21 ABBREVIATE_BRIEF = "The $name class" \
22 "The $name widget" \
23 "The $name file" \
24 is \
25 provides \
26 specifies \
27 contains \
28 represents \
29 a \
30 an \
31 the
32 INLINE_INHERITED_MEMB = YES
33 JAVADOC_AUTOBRIEF = YES
34 OPTIMIZE_OUTPUT_FOR_C = YES
35 EXTRACT_ALL = YES
36 CASE_SENSE_NAMES = NO
37 SHOW_INCLUDE_FILES = NO
38 MAX_INITIALIZER_LINES = 27
39 LAYOUT_FILE = DoxygenLayout.xml
40 FILE_PATTERNS = *.h \
41 *.dox
42 EXCLUDE_PATTERNS = _*.h
43 EXAMPLE_PATTERNS = *
44 VERBATIM_HEADERS = NO
45 ALPHABETICAL_INDEX = NO
46 HTML_OUTPUT =
47 HTML_HEADER = header.html
48 HTML_FOOTER = footer.html
49 HTML_STYLESHEET = stylesheet.css
50 HTML_COLORSTYLE_HUE = 217
51 TREEVIEW_WIDTH = 251
52 SEARCHENGINE = NO
53 GENERATE_LATEX = NO
54 PAPER_TYPE = a4wide
55 MACRO_EXPANSION = YES
56 EXPAND_ONLY_PREDEF = YES
57 PREDEFINED = __native_client__ \
58 DOXYGEN_SHOULD_SKIP_THIS \
59 __attribute__(x)= \
60 EXTERN_C_BEGIN= \
61 EXTERN_C_END= \
62 PP_COMPILE_ASSERT_SIZE_IN_BYTES= \
63 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES= \
64 PP_INLINE= \
65 PP_EXPORT
66 CLASS_DIAGRAMS = NO
67 HAVE_DOT = YES
68 DOT_NUM_THREADS = 4
69 DOT_FONTNAME = FreeSans.ttf
70 COLLABORATION_GRAPH = NO
71 GROUP_GRAPHS = NO
72 GRAPHICAL_HIERARCHY = NO
73 MAX_DOT_GRAPH_DEPTH = 1000
74 DOT_TRANSPARENT = YES
75 DOT_MULTI_TARGETS = NO
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698