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

Side by Side Diff: third_party/crashpad/crashpad/doc/support/crashpad.doxy

Issue 2555353002: Update Crashpad to 32981a3ee9d7c2769fb27afa038fe2e194cfa329 (Closed)
Patch Set: fix readme Created 4 years 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
OLDNEW
1 # Doxyfile 1.8.9.1 1 # Doxyfile 1.8.12
2 2
3 # This file describes the settings to be used by the documentation system 3 # This file describes the settings to be used by the documentation system
4 # doxygen (www.doxygen.org) for a project. 4 # doxygen (www.doxygen.org) for a project.
5 # 5 #
6 # All text after a double hash (##) is considered a comment and is placed in 6 # All text after a double hash (##) is considered a comment and is placed in
7 # front of the TAG it is preceding. 7 # front of the TAG it is preceding.
8 # 8 #
9 # All text after a single hash (#) is considered a comment and will be ignored. 9 # All text after a single hash (#) is considered a comment and will be ignored.
10 # The format is: 10 # The format is:
11 # TAG = value [value, ...] 11 # TAG = value [value, ...]
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 STRIP_FROM_PATH = 155 STRIP_FROM_PATH =
156 156
157 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the 157 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
158 # path mentioned in the documentation of a class, which tells the reader which 158 # path mentioned in the documentation of a class, which tells the reader which
159 # header file to include in order to use a class. If left blank only the name of 159 # header file to include in order to use a class. If left blank only the name of
160 # the header file containing the class definition is used. Otherwise one should 160 # the header file containing the class definition is used. Otherwise one should
161 # specify the list of include paths that are normally passed to the compiler 161 # specify the list of include paths that are normally passed to the compiler
162 # using the -I flag. 162 # using the -I flag.
163 163
164 STRIP_FROM_INC_PATH = . \ 164 STRIP_FROM_INC_PATH = . \
165 compat/mac \ 165 compat/non_mac \
166 compat/non_win 166 compat/non_win
167 167
168 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but 168 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
169 # less readable) file names. This can be useful is your file systems doesn't 169 # less readable) file names. This can be useful is your file systems doesn't
170 # support long names like on DOS, Mac, or CD-ROM. 170 # support long names like on DOS, Mac, or CD-ROM.
171 # The default value is: NO. 171 # The default value is: NO.
172 172
173 SHORT_NAMES = NO 173 SHORT_NAMES = NO
174 174
175 # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the 175 # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 288 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
289 # according to the Markdown format, which allows for more readable 289 # according to the Markdown format, which allows for more readable
290 # documentation. See http://daringfireball.net/projects/markdown/ for details. 290 # documentation. See http://daringfireball.net/projects/markdown/ for details.
291 # The output of markdown processing is further processed by doxygen, so you can 291 # The output of markdown processing is further processed by doxygen, so you can
292 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 292 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
293 # case of backward compatibilities issues. 293 # case of backward compatibilities issues.
294 # The default value is: YES. 294 # The default value is: YES.
295 295
296 MARKDOWN_SUPPORT = YES 296 MARKDOWN_SUPPORT = YES
297 297
298 # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
299 # to that level are automatically included in the table of contents, even if
300 # they do not have an id attribute.
301 # Note: This feature currently applies only to Markdown headings.
302 # Minimum value: 0, maximum value: 99, default value: 0.
303 # This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
304
305 TOC_INCLUDE_HEADINGS = 0
306
298 # When enabled doxygen tries to link words that correspond to documented 307 # When enabled doxygen tries to link words that correspond to documented
299 # classes, or namespaces to their corresponding documentation. Such a link can 308 # classes, or namespaces to their corresponding documentation. Such a link can
300 # be prevented in individual cases by putting a % sign in front of the word or 309 # be prevented in individual cases by putting a % sign in front of the word or
301 # globally by setting AUTOLINK_SUPPORT to NO. 310 # globally by setting AUTOLINK_SUPPORT to NO.
302 # The default value is: YES. 311 # The default value is: YES.
303 312
304 AUTOLINK_SUPPORT = YES 313 AUTOLINK_SUPPORT = YES
305 314
306 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 315 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
307 # to include (a tag file for) the STL sources as input, then you should set this 316 # to include (a tag file for) the STL sources as input, then you should set this
(...skipping 30 matching lines...) Expand all
338 IDL_PROPERTY_SUPPORT = YES 347 IDL_PROPERTY_SUPPORT = YES
339 348
340 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 349 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
341 # tag is set to YES then doxygen will reuse the documentation of the first 350 # tag is set to YES then doxygen will reuse the documentation of the first
342 # member in the group (if any) for the other members of the group. By default 351 # member in the group (if any) for the other members of the group. By default
343 # all members of a group must be documented explicitly. 352 # all members of a group must be documented explicitly.
344 # The default value is: NO. 353 # The default value is: NO.
345 354
346 DISTRIBUTE_GROUP_DOC = YES 355 DISTRIBUTE_GROUP_DOC = YES
347 356
357 # If one adds a struct or class to a group and this option is enabled, then also
358 # any nested class or struct is added to the same group. By default this option
359 # is disabled and one has to add nested compounds explicitly via \ingroup.
360 # The default value is: NO.
361
362 GROUP_NESTED_COMPOUNDS = NO
363
348 # Set the SUBGROUPING tag to YES to allow class member groups of the same type 364 # Set the SUBGROUPING tag to YES to allow class member groups of the same type
349 # (for instance a group of public functions) to be put as a subgroup of that 365 # (for instance a group of public functions) to be put as a subgroup of that
350 # type (e.g. under the Public Functions section). Set it to NO to prevent 366 # type (e.g. under the Public Functions section). Set it to NO to prevent
351 # subgrouping. Alternatively, this can be done per class using the 367 # subgrouping. Alternatively, this can be done per class using the
352 # \nosubgrouping command. 368 # \nosubgrouping command.
353 # The default value is: YES. 369 # The default value is: YES.
354 370
355 SUBGROUPING = YES 371 SUBGROUPING = YES
356 372
357 # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions 373 # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 709
694 #--------------------------------------------------------------------------- 710 #---------------------------------------------------------------------------
695 # Configuration options related to warning and progress messages 711 # Configuration options related to warning and progress messages
696 #--------------------------------------------------------------------------- 712 #---------------------------------------------------------------------------
697 713
698 # The QUIET tag can be used to turn on/off the messages that are generated to 714 # The QUIET tag can be used to turn on/off the messages that are generated to
699 # standard output by doxygen. If QUIET is set to YES this implies that the 715 # standard output by doxygen. If QUIET is set to YES this implies that the
700 # messages are off. 716 # messages are off.
701 # The default value is: NO. 717 # The default value is: NO.
702 718
703 QUIET = NO 719 QUIET = YES
704 720
705 # The WARNINGS tag can be used to turn on/off the warning messages that are 721 # The WARNINGS tag can be used to turn on/off the warning messages that are
706 # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES 722 # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
707 # this implies that the warnings are on. 723 # this implies that the warnings are on.
708 # 724 #
709 # Tip: Turn warnings on while writing the documentation. 725 # Tip: Turn warnings on while writing the documentation.
710 # The default value is: YES. 726 # The default value is: YES.
711 727
712 WARNINGS = YES 728 WARNINGS = YES
713 729
714 # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate 730 # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
715 # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 731 # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
716 # will automatically be disabled. 732 # will automatically be disabled.
717 # The default value is: YES. 733 # The default value is: YES.
718 734
719 WARN_IF_UNDOCUMENTED = YES 735 WARN_IF_UNDOCUMENTED = NO
720 736
721 # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for 737 # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
722 # potential errors in the documentation, such as not documenting some parameters 738 # potential errors in the documentation, such as not documenting some parameters
723 # in a documented function, or documenting parameters that don't exist or using 739 # in a documented function, or documenting parameters that don't exist or using
724 # markup commands wrongly. 740 # markup commands wrongly.
725 # The default value is: YES. 741 # The default value is: YES.
726 742
727 WARN_IF_DOC_ERROR = YES 743 WARN_IF_DOC_ERROR = YES
728 744
729 # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 745 # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
730 # are documented, but have no documentation for their parameters or return 746 # are documented, but have no documentation for their parameters or return
731 # value. If set to NO, doxygen will only warn about wrong or incomplete 747 # value. If set to NO, doxygen will only warn about wrong or incomplete
732 # parameter documentation, but not about the absence of documentation. 748 # parameter documentation, but not about the absence of documentation.
733 # The default value is: NO. 749 # The default value is: NO.
734 750
735 WARN_NO_PARAMDOC = NO 751 WARN_NO_PARAMDOC = NO
736 752
753 # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
754 # a warning is encountered.
755 # The default value is: NO.
756
757 WARN_AS_ERROR = NO
758
737 # The WARN_FORMAT tag determines the format of the warning messages that doxygen 759 # The WARN_FORMAT tag determines the format of the warning messages that doxygen
738 # can produce. The string should contain the $file, $line, and $text tags, which 760 # can produce. The string should contain the $file, $line, and $text tags, which
739 # will be replaced by the file and line number from which the warning originated 761 # will be replaced by the file and line number from which the warning originated
740 # and the warning text. Optionally the format may contain $version, which will 762 # and the warning text. Optionally the format may contain $version, which will
741 # be replaced by the version of the file (if it could be obtained via 763 # be replaced by the version of the file (if it could be obtained via
742 # FILE_VERSION_FILTER) 764 # FILE_VERSION_FILTER)
743 # The default value is: $file:$line: $text. 765 # The default value is: $file:$line: $text.
744 766
745 WARN_FORMAT = "$file:$line: $text" 767 WARN_FORMAT = "$file:$line: $text"
746 768
747 # The WARN_LOGFILE tag can be used to specify a file to which warning and error 769 # The WARN_LOGFILE tag can be used to specify a file to which warning and error
748 # messages should be written. If left blank the output is written to standard 770 # messages should be written. If left blank the output is written to standard
749 # error (stderr). 771 # error (stderr).
750 772
751 WARN_LOGFILE = 773 WARN_LOGFILE =
752 774
753 #--------------------------------------------------------------------------- 775 #---------------------------------------------------------------------------
754 # Configuration options related to the input files 776 # Configuration options related to the input files
755 #--------------------------------------------------------------------------- 777 #---------------------------------------------------------------------------
756 778
757 # The INPUT tag is used to specify the files and/or directories that contain 779 # The INPUT tag is used to specify the files and/or directories that contain
758 # documented source files. You may enter file names like myfile.cpp or 780 # documented source files. You may enter file names like myfile.cpp or
759 # directories like /usr/src/myproject. Separate the files or directories with 781 # directories like /usr/src/myproject. Separate the files or directories with
760 # spaces. 782 # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
761 # Note: If this tag is empty the current directory is searched. 783 # Note: If this tag is empty the current directory is searched.
762 784
763 INPUT = 785 INPUT =
764 786
765 # This tag can be used to specify the character encoding of the source files 787 # This tag can be used to specify the character encoding of the source files
766 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 788 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
767 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv 789 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
768 # documentation (see: http://www.gnu.org/software/libiconv) for the list of 790 # documentation (see: http://www.gnu.org/software/libiconv) for the list of
769 # possible encodings. 791 # possible encodings.
770 # The default value is: UTF-8. 792 # The default value is: UTF-8.
771 793
772 INPUT_ENCODING = UTF-8 794 INPUT_ENCODING = UTF-8
773 795
774 # If the value of the INPUT tag contains directories, you can use the 796 # If the value of the INPUT tag contains directories, you can use the
775 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 797 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
776 # *.h) to filter out the source-files in the directories. If left blank the 798 # *.h) to filter out the source-files in the directories.
777 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, 799 #
778 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, 800 # Note that for custom extensions or not directly supported extensions you also
779 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, 801 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
780 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, 802 # read by doxygen.
781 # *.qsf, *.as and *.js. 803 #
804 # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
805 # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
806 # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
807 # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
808 # *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf.
782 809
783 FILE_PATTERNS = *.c \ 810 FILE_PATTERNS = *.c \
784 *.cc \ 811 *.cc \
785 *.h \ 812 *.h \
786 *.m \ 813 *.m \
787 *.mm 814 *.mm
788 815
789 # The RECURSIVE tag can be used to specify whether or not subdirectories should 816 # The RECURSIVE tag can be used to specify whether or not subdirectories should
790 # be searched for input files as well. 817 # be searched for input files as well.
791 # The default value is: NO. 818 # The default value is: NO.
792 819
793 RECURSIVE = YES 820 RECURSIVE = YES
794 821
795 # The EXCLUDE tag can be used to specify files and/or directories that should be 822 # The EXCLUDE tag can be used to specify files and/or directories that should be
796 # excluded from the INPUT source files. This way you can easily exclude a 823 # excluded from the INPUT source files. This way you can easily exclude a
797 # subdirectory from a directory tree whose root is specified with the INPUT tag. 824 # subdirectory from a directory tree whose root is specified with the INPUT tag.
798 # 825 #
799 # Note that relative paths are relative to the directory from which doxygen is 826 # Note that relative paths are relative to the directory from which doxygen is
800 # run. 827 # run.
801 828
802 EXCLUDE = third_party 829 EXCLUDE = compat/mac \
830 compat/non_cxx11_lib \
831 compat/win \
832 third_party
803 833
804 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or 834 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
805 # directories that are symbolic links (a Unix file system feature) are excluded 835 # directories that are symbolic links (a Unix file system feature) are excluded
806 # from the input. 836 # from the input.
807 # The default value is: NO. 837 # The default value is: NO.
808 838
809 EXCLUDE_SYMLINKS = NO 839 EXCLUDE_SYMLINKS = NO
810 840
811 # If the value of the INPUT tag contains directories, you can use the 841 # If the value of the INPUT tag contains directories, you can use the
812 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 842 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 # <filter> <input-file> 891 # <filter> <input-file>
862 # 892 #
863 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 893 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
864 # name of an input file. Doxygen will then use the output that the filter 894 # name of an input file. Doxygen will then use the output that the filter
865 # program writes to standard output. If FILTER_PATTERNS is specified, this tag 895 # program writes to standard output. If FILTER_PATTERNS is specified, this tag
866 # will be ignored. 896 # will be ignored.
867 # 897 #
868 # Note that the filter must not add or remove lines; it is applied before the 898 # Note that the filter must not add or remove lines; it is applied before the
869 # code is scanned, but not when the output code is generated. If lines are added 899 # code is scanned, but not when the output code is generated. If lines are added
870 # or removed, the anchors will not be placed correctly. 900 # or removed, the anchors will not be placed correctly.
901 #
902 # Note that for custom extensions or not directly supported extensions you also
903 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
904 # properly processed by doxygen.
871 905
872 INPUT_FILTER = 906 INPUT_FILTER =
873 907
874 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 908 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
875 # basis. Doxygen will compare the file name with each pattern and apply the 909 # basis. Doxygen will compare the file name with each pattern and apply the
876 # filter if there is a match. The filters are a list of the form: pattern=filter 910 # filter if there is a match. The filters are a list of the form: pattern=filter
877 # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how 911 # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
878 # filters are used. If the FILTER_PATTERNS tag is empty or if none of the 912 # filters are used. If the FILTER_PATTERNS tag is empty or if none of the
879 # patterns match the file name, INPUT_FILTER is applied. 913 # patterns match the file name, INPUT_FILTER is applied.
914 #
915 # Note that for custom extensions or not directly supported extensions you also
916 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
917 # properly processed by doxygen.
880 918
881 FILTER_PATTERNS = 919 FILTER_PATTERNS =
882 920
883 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 921 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
884 # INPUT_FILTER) will also be used to filter the input files that are used for 922 # INPUT_FILTER) will also be used to filter the input files that are used for
885 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 923 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
886 # The default value is: NO. 924 # The default value is: NO.
887 925
888 FILTER_SOURCE_FILES = NO 926 FILTER_SOURCE_FILES = NO
889 927
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 # cascading style sheets that are included after the standard style sheets 1122 # cascading style sheets that are included after the standard style sheets
1085 # created by doxygen. Using this option one can overrule certain style aspects. 1123 # created by doxygen. Using this option one can overrule certain style aspects.
1086 # This is preferred over using HTML_STYLESHEET since it does not replace the 1124 # This is preferred over using HTML_STYLESHEET since it does not replace the
1087 # standard style sheet and is therefore more robust against future updates. 1125 # standard style sheet and is therefore more robust against future updates.
1088 # Doxygen will copy the style sheet files to the output directory. 1126 # Doxygen will copy the style sheet files to the output directory.
1089 # Note: The order of the extra style sheet files is of importance (e.g. the last 1127 # Note: The order of the extra style sheet files is of importance (e.g. the last
1090 # style sheet in the list overrules the setting of the previous ones in the 1128 # style sheet in the list overrules the setting of the previous ones in the
1091 # list). For an example see the documentation. 1129 # list). For an example see the documentation.
1092 # This tag requires that the tag GENERATE_HTML is set to YES. 1130 # This tag requires that the tag GENERATE_HTML is set to YES.
1093 1131
1094 HTML_EXTRA_STYLESHEET = 1132 HTML_EXTRA_STYLESHEET = doc/support/crashpad_doxygen.css
1095 1133
1096 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 1134 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
1097 # other source files which should be copied to the HTML output directory. Note 1135 # other source files which should be copied to the HTML output directory. Note
1098 # that these files will be copied to the base HTML output directory. Use the 1136 # that these files will be copied to the base HTML output directory. Use the
1099 # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 1137 # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
1100 # files. In the HTML_STYLESHEET file, use the file name only. Also note that the 1138 # files. In the HTML_STYLESHEET file, use the file name only. Also note that the
1101 # files will be copied as-is; there are no commands or markers available. 1139 # files will be copied as-is; there are no commands or markers available.
1102 # This tag requires that the tag GENERATE_HTML is set to YES. 1140 # This tag requires that the tag GENERATE_HTML is set to YES.
1103 1141
1104 HTML_EXTRA_FILES = 1142 HTML_EXTRA_FILES =
(...skipping 23 matching lines...) Expand all
1128 # darker. The value divided by 100 is the actual gamma applied, so 80 represents 1166 # darker. The value divided by 100 is the actual gamma applied, so 80 represents
1129 # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not 1167 # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
1130 # change the gamma. 1168 # change the gamma.
1131 # Minimum value: 40, maximum value: 240, default value: 80. 1169 # Minimum value: 40, maximum value: 240, default value: 80.
1132 # This tag requires that the tag GENERATE_HTML is set to YES. 1170 # This tag requires that the tag GENERATE_HTML is set to YES.
1133 1171
1134 HTML_COLORSTYLE_GAMMA = 80 1172 HTML_COLORSTYLE_GAMMA = 80
1135 1173
1136 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1174 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1137 # page will contain the date and time when the page was generated. Setting this 1175 # page will contain the date and time when the page was generated. Setting this
1138 # to NO can help when comparing the output of multiple runs. 1176 # to YES can help to show when doxygen was last run and thus if the
1139 # The default value is: YES. 1177 # documentation is up to date.
1178 # The default value is: NO.
1140 # This tag requires that the tag GENERATE_HTML is set to YES. 1179 # This tag requires that the tag GENERATE_HTML is set to YES.
1141 1180
1142 HTML_TIMESTAMP = NO 1181 HTML_TIMESTAMP = NO
1143 1182
1144 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 1183 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
1145 # documentation will contain sections that can be hidden and shown after the 1184 # documentation will contain sections that can be hidden and shown after the
1146 # page has loaded. 1185 # page has loaded.
1147 # The default value is: NO. 1186 # The default value is: NO.
1148 # This tag requires that the tag GENERATE_HTML is set to YES. 1187 # This tag requires that the tag GENERATE_HTML is set to YES.
1149 1188
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1603 # The PAPER_TYPE tag can be used to set the paper type that is used by the 1642 # The PAPER_TYPE tag can be used to set the paper type that is used by the
1604 # printer. 1643 # printer.
1605 # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 1644 # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
1606 # 14 inches) and executive (7.25 x 10.5 inches). 1645 # 14 inches) and executive (7.25 x 10.5 inches).
1607 # The default value is: a4. 1646 # The default value is: a4.
1608 # This tag requires that the tag GENERATE_LATEX is set to YES. 1647 # This tag requires that the tag GENERATE_LATEX is set to YES.
1609 1648
1610 PAPER_TYPE = a4 1649 PAPER_TYPE = a4
1611 1650
1612 # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 1651 # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
1613 # that should be included in the LaTeX output. To get the times font for 1652 # that should be included in the LaTeX output. The package can be specified just
1614 # instance you can specify 1653 # by its name or with the correct syntax as to be used with the LaTeX
1615 # EXTRA_PACKAGES=times 1654 # \usepackage command. To get the times font for instance you can specify :
1655 # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
1656 # To use the option intlimits with the amsmath package you can specify:
1657 # EXTRA_PACKAGES=[intlimits]{amsmath}
1616 # If left blank no extra packages will be included. 1658 # If left blank no extra packages will be included.
1617 # This tag requires that the tag GENERATE_LATEX is set to YES. 1659 # This tag requires that the tag GENERATE_LATEX is set to YES.
1618 1660
1619 EXTRA_PACKAGES = 1661 EXTRA_PACKAGES =
1620 1662
1621 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the 1663 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
1622 # generated LaTeX document. The header should contain everything until the first 1664 # generated LaTeX document. The header should contain everything until the first
1623 # chapter. If it is left blank doxygen will generate a standard header. See 1665 # chapter. If it is left blank doxygen will generate a standard header. See
1624 # section "Doxygen usage" for information on how to let doxygen write the 1666 # section "Doxygen usage" for information on how to let doxygen write the
1625 # default header to a separate file. 1667 # default header to a separate file.
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
1708 LATEX_SOURCE_CODE = NO 1750 LATEX_SOURCE_CODE = NO
1709 1751
1710 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the 1752 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
1711 # bibliography, e.g. plainnat, or ieeetr. See 1753 # bibliography, e.g. plainnat, or ieeetr. See
1712 # http://en.wikipedia.org/wiki/BibTeX and \cite for more info. 1754 # http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
1713 # The default value is: plain. 1755 # The default value is: plain.
1714 # This tag requires that the tag GENERATE_LATEX is set to YES. 1756 # This tag requires that the tag GENERATE_LATEX is set to YES.
1715 1757
1716 LATEX_BIB_STYLE = plain 1758 LATEX_BIB_STYLE = plain
1717 1759
1760 # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
1761 # page will contain the date and time when the page was generated. Setting this
1762 # to NO can help when comparing the output of multiple runs.
1763 # The default value is: NO.
1764 # This tag requires that the tag GENERATE_LATEX is set to YES.
1765
1766 LATEX_TIMESTAMP = NO
1767
1718 #--------------------------------------------------------------------------- 1768 #---------------------------------------------------------------------------
1719 # Configuration options related to the RTF output 1769 # Configuration options related to the RTF output
1720 #--------------------------------------------------------------------------- 1770 #---------------------------------------------------------------------------
1721 1771
1722 # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The 1772 # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
1723 # RTF output is optimized for Word 97 and may not look too pretty with other RTF 1773 # RTF output is optimized for Word 97 and may not look too pretty with other RTF
1724 # readers/editors. 1774 # readers/editors.
1725 # The default value is: NO. 1775 # The default value is: NO.
1726 1776
1727 GENERATE_RTF = NO 1777 GENERATE_RTF = NO
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
2210 # The default value is: YES. 2260 # The default value is: YES.
2211 # This tag requires that the tag HAVE_DOT is set to YES. 2261 # This tag requires that the tag HAVE_DOT is set to YES.
2212 2262
2213 INCLUDED_BY_GRAPH = YES 2263 INCLUDED_BY_GRAPH = YES
2214 2264
2215 # If the CALL_GRAPH tag is set to YES then doxygen will generate a call 2265 # If the CALL_GRAPH tag is set to YES then doxygen will generate a call
2216 # dependency graph for every global function or class method. 2266 # dependency graph for every global function or class method.
2217 # 2267 #
2218 # Note that enabling this option will significantly increase the time of a run. 2268 # Note that enabling this option will significantly increase the time of a run.
2219 # So in most cases it will be better to enable call graphs for selected 2269 # So in most cases it will be better to enable call graphs for selected
2220 # functions only using the \callgraph command. 2270 # functions only using the \callgraph command. Disabling a call graph can be
2271 # accomplished by means of the command \hidecallgraph.
2221 # The default value is: NO. 2272 # The default value is: NO.
2222 # This tag requires that the tag HAVE_DOT is set to YES. 2273 # This tag requires that the tag HAVE_DOT is set to YES.
2223 2274
2224 CALL_GRAPH = NO 2275 CALL_GRAPH = NO
2225 2276
2226 # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller 2277 # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
2227 # dependency graph for every global function or class method. 2278 # dependency graph for every global function or class method.
2228 # 2279 #
2229 # Note that enabling this option will significantly increase the time of a run. 2280 # Note that enabling this option will significantly increase the time of a run.
2230 # So in most cases it will be better to enable caller graphs for selected 2281 # So in most cases it will be better to enable caller graphs for selected
2231 # functions only using the \callergraph command. 2282 # functions only using the \callergraph command. Disabling a caller graph can be
2283 # accomplished by means of the command \hidecallergraph.
2232 # The default value is: NO. 2284 # The default value is: NO.
2233 # This tag requires that the tag HAVE_DOT is set to YES. 2285 # This tag requires that the tag HAVE_DOT is set to YES.
2234 2286
2235 CALLER_GRAPH = NO 2287 CALLER_GRAPH = NO
2236 2288
2237 # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical 2289 # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
2238 # hierarchy of all classes instead of a textual one. 2290 # hierarchy of all classes instead of a textual one.
2239 # The default value is: YES. 2291 # The default value is: YES.
2240 # This tag requires that the tag HAVE_DOT is set to YES. 2292 # This tag requires that the tag HAVE_DOT is set to YES.
2241 2293
2242 GRAPHICAL_HIERARCHY = YES 2294 GRAPHICAL_HIERARCHY = YES
2243 2295
2244 # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the 2296 # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
2245 # dependencies a directory has on other directories in a graphical way. The 2297 # dependencies a directory has on other directories in a graphical way. The
2246 # dependency relations are determined by the #include relations between the 2298 # dependency relations are determined by the #include relations between the
2247 # files in the directories. 2299 # files in the directories.
2248 # The default value is: YES. 2300 # The default value is: YES.
2249 # This tag requires that the tag HAVE_DOT is set to YES. 2301 # This tag requires that the tag HAVE_DOT is set to YES.
2250 2302
2251 DIRECTORY_GRAPH = YES 2303 DIRECTORY_GRAPH = YES
2252 2304
2253 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 2305 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
2254 # generated by dot. 2306 # generated by dot. For an explanation of the image formats see the section
2307 # output formats in the documentation of the dot tool (Graphviz (see:
2308 # http://www.graphviz.org/)).
2255 # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 2309 # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2256 # to make the SVG files visible in IE 9+ (other browsers do not have this 2310 # to make the SVG files visible in IE 9+ (other browsers do not have this
2257 # requirement). 2311 # requirement).
2258 # Possible values are: png, jpg, gif and svg. 2312 # Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
2313 # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
2314 # png:gdiplus:gdiplus.
2259 # The default value is: png. 2315 # The default value is: png.
2260 # This tag requires that the tag HAVE_DOT is set to YES. 2316 # This tag requires that the tag HAVE_DOT is set to YES.
2261 2317
2262 DOT_IMAGE_FORMAT = png 2318 DOT_IMAGE_FORMAT = png
2263 2319
2264 # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 2320 # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
2265 # enable generation of interactive SVG images that allow zooming and panning. 2321 # enable generation of interactive SVG images that allow zooming and panning.
2266 # 2322 #
2267 # Note that this requires a modern browser other than Internet Explorer. Tested 2323 # Note that this requires a modern browser other than Internet Explorer. Tested
2268 # and working are Firefox, Chrome, Safari, and Opera. 2324 # and working are Firefox, Chrome, Safari, and Opera.
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
2363 # This tag requires that the tag HAVE_DOT is set to YES. 2419 # This tag requires that the tag HAVE_DOT is set to YES.
2364 2420
2365 GENERATE_LEGEND = YES 2421 GENERATE_LEGEND = YES
2366 2422
2367 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot 2423 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
2368 # files that are used to generate the various graphs. 2424 # files that are used to generate the various graphs.
2369 # The default value is: YES. 2425 # The default value is: YES.
2370 # This tag requires that the tag HAVE_DOT is set to YES. 2426 # This tag requires that the tag HAVE_DOT is set to YES.
2371 2427
2372 DOT_CLEANUP = YES 2428 DOT_CLEANUP = YES
OLDNEW
« no previous file with comments | « third_party/crashpad/crashpad/doc/support/asciidoc.css ('k') | third_party/crashpad/crashpad/doc/support/crashpad.doxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698