Commit 2cad380b by Reed Kotler Committed by Jim Stichnoth

add predefines to doxygen

this is added for both standard doxygen and clang assisted doxygen (which cannot be turned on yet without some additions to the third-party toolchain but can be used locally). the predefines here are the defaults when subzero is built. not having these creates the bigger issue when clang assisted parsing is enabled but should be there always. BUG= R=stichnot@chromium.org Review URL: https://codereview.chromium.org/1533963002 . Patch from Reed Kotler <rkotlerimgtec@gmail.com>.
parent cb0d47b6
......@@ -1945,7 +1945,12 @@ INCLUDE_FILE_PATTERNS =
# recursively expanded use the := operator instead of the = operator.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
PREDEFINED =
PREDEFINED = "DALLOW_DUMP=1" \
"DALLOW_LLVM_CL=1" \
"DALLOW_LLVM_IR=1" \
"DALLOW_LLVM_IR_AS_INPUT=1" \
"DALLOW_MINIMAL_BUILD=0" \
"DPNACL_BROWSER_TRANSLATOR=0"
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
# tag can be used to specify a list of macro names that should be expanded. The
......@@ -2311,3 +2316,13 @@ GENERATE_LEGEND = YES
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_CLEANUP = YES
CLANG_ASSISTED_PARSING = NO
CLANG_OPTIONS = "-std=c++11" \
"-DALLOW_DUMP=1" \
"-DALLOW_LLVM_CL=1" \
"-DALLOW_LLVM_IR=1" \
"-DALLOW_LLVM_IR_AS_INPUT=1" \
"-DALLOW_MINIMAL_BUILD=0" \
"-DPNACL_BROWSER_TRANSLATOR=0"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment