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

Side by Side Diff: crashpad.doxy

Issue 467383002: Hide COMPILE_ASSERT from Doxygen, which doesn’t otherwise understand it (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Doxyfile 1.8.7 1 # Doxyfile 1.8.7
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:
(...skipping 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after
1936 INCLUDE_FILE_PATTERNS = 1936 INCLUDE_FILE_PATTERNS =
1937 1937
1938 # The PREDEFINED tag can be used to specify one or more macro names that are 1938 # The PREDEFINED tag can be used to specify one or more macro names that are
1939 # defined before the preprocessor is started (similar to the -D option of e.g. 1939 # defined before the preprocessor is started (similar to the -D option of e.g.
1940 # gcc). The argument of the tag is a list of macros of the form: name or 1940 # gcc). The argument of the tag is a list of macros of the form: name or
1941 # name=definition (no spaces). If the definition and the "=" are omitted, "=1" 1941 # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
1942 # is assumed. To prevent a macro definition from being undefined via #undef or 1942 # is assumed. To prevent a macro definition from being undefined via #undef or
1943 # recursively expanded use the := operator instead of the = operator. 1943 # recursively expanded use the := operator instead of the = operator.
1944 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1944 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1945 1945
1946 PREDEFINED = __attribute__(x)= 1946 PREDEFINED = COMPILE_ASSERT(a,b)= \
1947 __attribute__(x)=
1947 1948
1948 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 1949 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
1949 # tag can be used to specify a list of macro names that should be expanded. The 1950 # tag can be used to specify a list of macro names that should be expanded. The
1950 # macro definition that is found in the sources will be used. Use the PREDEFINED 1951 # macro definition that is found in the sources will be used. Use the PREDEFINED
1951 # tag if you want to use a different macro definition that overrules the 1952 # tag if you want to use a different macro definition that overrules the
1952 # definition found in the source code. 1953 # definition found in the source code.
1953 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1954 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1954 1955
1955 EXPAND_AS_DEFINED = 1956 EXPAND_AS_DEFINED =
1956 1957
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
2302 # This tag requires that the tag HAVE_DOT is set to YES. 2303 # This tag requires that the tag HAVE_DOT is set to YES.
2303 2304
2304 GENERATE_LEGEND = YES 2305 GENERATE_LEGEND = YES
2305 2306
2306 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot 2307 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot
2307 # files that are used to generate the various graphs. 2308 # files that are used to generate the various graphs.
2308 # The default value is: YES. 2309 # The default value is: YES.
2309 # This tag requires that the tag HAVE_DOT is set to YES. 2310 # This tag requires that the tag HAVE_DOT is set to YES.
2310 2311
2311 DOT_CLEANUP = YES 2312 DOT_CLEANUP = YES
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698