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

Side by Side Diff: Doxyfile

Issue 1533963002: add predefines to doxygen (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: change suggested by stichnot Created 5 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
« 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.6 1 # Doxyfile 1.8.6
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 1927 matching lines...) Expand 10 before | Expand all | Expand 10 after
1938 INCLUDE_FILE_PATTERNS = 1938 INCLUDE_FILE_PATTERNS =
1939 1939
1940 # The PREDEFINED tag can be used to specify one or more macro names that are 1940 # The PREDEFINED tag can be used to specify one or more macro names that are
1941 # defined before the preprocessor is started (similar to the -D option of e.g. 1941 # defined before the preprocessor is started (similar to the -D option of e.g.
1942 # gcc). The argument of the tag is a list of macros of the form: name or 1942 # gcc). The argument of the tag is a list of macros of the form: name or
1943 # name=definition (no spaces). If the definition and the "=" are omitted, "=1" 1943 # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
1944 # is assumed. To prevent a macro definition from being undefined via #undef or 1944 # is assumed. To prevent a macro definition from being undefined via #undef or
1945 # recursively expanded use the := operator instead of the = operator. 1945 # recursively expanded use the := operator instead of the = operator.
1946 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1946 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1947 1947
1948 PREDEFINED = 1948 PREDEFINED = "DALLOW_DUMP=1" \
1949 "DALLOW_LLVM_CL=1" \
1950 "DALLOW_LLVM_IR=1" \
1951 "DALLOW_LLVM_IR_AS_INPUT=1" \
1952 "DALLOW_MINIMAL_BUILD=0" \
1953 "DPNACL_BROWSER_TRANSLATOR=0"
1949 1954
1950 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 1955 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
1951 # tag can be used to specify a list of macro names that should be expanded. The 1956 # tag can be used to specify a list of macro names that should be expanded. The
1952 # macro definition that is found in the sources will be used. Use the PREDEFINED 1957 # macro definition that is found in the sources will be used. Use the PREDEFINED
1953 # tag if you want to use a different macro definition that overrules the 1958 # tag if you want to use a different macro definition that overrules the
1954 # definition found in the source code. 1959 # definition found in the source code.
1955 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 1960 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1956 1961
1957 EXPAND_AS_DEFINED = 1962 EXPAND_AS_DEFINED =
1958 1963
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
2304 # This tag requires that the tag HAVE_DOT is set to YES. 2309 # This tag requires that the tag HAVE_DOT is set to YES.
2305 2310
2306 GENERATE_LEGEND = YES 2311 GENERATE_LEGEND = YES
2307 2312
2308 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot 2313 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot
2309 # files that are used to generate the various graphs. 2314 # files that are used to generate the various graphs.
2310 # The default value is: YES. 2315 # The default value is: YES.
2311 # 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.
2312 2317
2313 DOT_CLEANUP = YES 2318 DOT_CLEANUP = YES
2319
2320 CLANG_ASSISTED_PARSING = NO
2321
2322 CLANG_OPTIONS = "-std=c++11" \
2323 "-DALLOW_DUMP=1" \
2324 "-DALLOW_LLVM_CL=1" \
2325 "-DALLOW_LLVM_IR=1" \
2326 "-DALLOW_LLVM_IR_AS_INPUT=1" \
2327 "-DALLOW_MINIMAL_BUILD=0" \
2328 "-DPNACL_BROWSER_TRANSLATOR=0"
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