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

Unified Diff: native_client_sdk/src/doc/doxygen/Doxyfile.cpp.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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/doc/doxygen/Doxyfile.cpp.template
diff --git a/native_client_sdk/src/doc/doxygen/Doxyfile.cpp.template b/native_client_sdk/src/doc/doxygen/Doxyfile.cpp.template
new file mode 100644
index 0000000000000000000000000000000000000000..79b77692fb12361a1eef9aa3f438fdaff0302e6c
--- /dev/null
+++ b/native_client_sdk/src/doc/doxygen/Doxyfile.cpp.template
@@ -0,0 +1,76 @@
+# Copyright (c) 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Doxyfile 1.7.6.1
+#
+# Specified below are only the values that differ from the defaults. To see the
+# default values, run:
+#
+# doxygen -g Doxyfile.defaults
+
+
+# These entries will be modified by generate_docs.py
+OUTPUT_DIRECTORY = %(out_dirname)s
+INPUT = %(doc_dirname)s/cpp \
+ %(doc_dirname)s/utility
+EXCLUDE = %(doc_dirname)s/cpp/array_output.h \
+ %(doc_dirname)s/cpp/output_traits.h \
+ %(doc_dirname)s/utility/completion_callback_factory_thread_traits.h
+
+# These entries are fixed.
+PROJECT_NAME =
+BRIEF_MEMBER_DESC = NO
+ABBREVIATE_BRIEF = "The $name class" \
+ "The $name widget" \
+ "The $name file" \
+ is \
+ provides \
+ specifies \
+ contains \
+ represents \
+ a \
+ an \
+ the
+JAVADOC_AUTOBRIEF = YES
+EXTRACT_ALL = YES
+CASE_SENSE_NAMES = NO
+SHOW_INCLUDE_FILES = NO
+MAX_INITIALIZER_LINES = 27
+LAYOUT_FILE = DoxygenLayout.xml
+FILE_PATTERNS = *.h \
+ *.dox
+EXCLUDE_PATTERNS = _*.h
+EXAMPLE_PATTERNS = *
+VERBATIM_HEADERS = NO
+ALPHABETICAL_INDEX = NO
+HTML_OUTPUT =
+HTML_HEADER = header.html
+HTML_FOOTER = footer.html
+HTML_STYLESHEET = stylesheet.css
+HTML_COLORSTYLE_HUE = 217
+TREEVIEW_WIDTH = 251
+SEARCHENGINE = NO
+GENERATE_LATEX = NO
+PAPER_TYPE = a4wide
+MACRO_EXPANSION = YES
+EXPAND_ONLY_PREDEF = YES
+PREDEFINED = __native_client__ \
+ DOXYGEN_SHOULD_SKIP_THIS \
+ __attribute__(x)= \
+ EXTERN_C_BEGIN= \
+ EXTERN_C_END= \
+ PP_COMPILE_ASSERT_SIZE_IN_BYTES= \
+ PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES= \
+ PP_INLINE= \
+ PP_EXPORT
+CLASS_DIAGRAMS = NO
+HAVE_DOT = YES
+DOT_NUM_THREADS = 4
+DOT_FONTNAME = FreeSans.ttf
+COLLABORATION_GRAPH = NO
+GROUP_GRAPHS = NO
+DOT_GRAPH_MAX_NODES = 57
+MAX_DOT_GRAPH_DEPTH = 1000
+DOT_TRANSPARENT = YES
+DOT_MULTI_TARGETS = NO

Powered by Google App Engine
This is Rietveld 408576698