Chromium Code Reviews

Side by Side Diff: docs/Doxyfile

Issue 1572143002: add scripts to doxygen for subzero (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« 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 731 matching lines...)
742 # directories like /usr/src/myproject. Separate the files or directories with 742 # directories like /usr/src/myproject. Separate the files or directories with
743 # spaces. 743 # spaces.
744 # Note: If this tag is empty the current directory is searched. 744 # Note: If this tag is empty the current directory is searched.
745 745
746 INPUT = "../src" \ 746 INPUT = "../src" \
747 "../../llvm/include/llvm/ADT" \ 747 "../../llvm/include/llvm/ADT" \
748 "../../llvm/include/llvm/Bitcode" \ 748 "../../llvm/include/llvm/Bitcode" \
749 "../../llvm/include/llvm/Config" \ 749 "../../llvm/include/llvm/Config" \
750 "../../llvm/include/llvm/IR" \ 750 "../../llvm/include/llvm/IR" \
751 "../../llvm/include/llvm/IRReader" \ 751 "../../llvm/include/llvm/IRReader" \
752 "../../llvm/include/llvm/Support" 752 "../../llvm/include/llvm/Support" \
753 "../pydir"
753 754
754 # This tag can be used to specify the character encoding of the source files 755 # This tag can be used to specify the character encoding of the source files
755 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 756 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
756 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv 757 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
757 # documentation (see: http://www.gnu.org/software/libiconv) for the list of 758 # documentation (see: http://www.gnu.org/software/libiconv) for the list of
758 # possible encodings. 759 # possible encodings.
759 # The default value is: UTF-8. 760 # The default value is: UTF-8.
760 761
761 INPUT_ENCODING = UTF-8 762 INPUT_ENCODING = UTF-8
762 763
(...skipping 1562 matching lines...)
2325 2326
2326 CLANG_ASSISTED_PARSING = NO 2327 CLANG_ASSISTED_PARSING = NO
2327 2328
2328 CLANG_OPTIONS = "-std=c++11" \ 2329 CLANG_OPTIONS = "-std=c++11" \
2329 "-DALLOW_DUMP=1" \ 2330 "-DALLOW_DUMP=1" \
2330 "-DALLOW_LLVM_CL=1" \ 2331 "-DALLOW_LLVM_CL=1" \
2331 "-DALLOW_LLVM_IR=1" \ 2332 "-DALLOW_LLVM_IR=1" \
2332 "-DALLOW_LLVM_IR_AS_INPUT=1" \ 2333 "-DALLOW_LLVM_IR_AS_INPUT=1" \
2333 "-DALLOW_MINIMAL_BUILD=0" \ 2334 "-DALLOW_MINIMAL_BUILD=0" \
2334 "-DPNACL_BROWSER_TRANSLATOR=0" 2335 "-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