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

Side by Side Diff: docs/Doxyfile

Issue 1590403005: add python scripts related to lit (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. 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 # language is one of the parsers supported by doxygen: IDL, Java, Javascript, 263 # language is one of the parsers supported by doxygen: IDL, Java, Javascript,
264 # C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make 264 # C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make
265 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C 265 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
266 # (default is Fortran), use: inc=Fortran f=C. 266 # (default is Fortran), use: inc=Fortran f=C.
267 # 267 #
268 # Note For files without extension you can use no_extension as a placeholder. 268 # Note For files without extension you can use no_extension as a placeholder.
269 # 269 #
270 # Note that for custom extensions you also need to set FILE_PATTERNS otherwise 270 # Note that for custom extensions you also need to set FILE_PATTERNS otherwise
271 # the files are not read by doxygen. 271 # the files are not read by doxygen.
272 272
273 EXTENSION_MAPPING = 273 EXTENSION_MAPPING = lit.cfg=Python
274 274
275 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 275 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
276 # according to the Markdown format, which allows for more readable 276 # according to the Markdown format, which allows for more readable
277 # documentation. See http://daringfireball.net/projects/markdown/ for details. 277 # documentation. See http://daringfireball.net/projects/markdown/ for details.
278 # The output of markdown processing is further processed by doxygen, so you can 278 # The output of markdown processing is further processed by doxygen, so you can
279 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 279 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
280 # case of backward compatibilities issues. 280 # case of backward compatibilities issues.
281 # The default value is: YES. 281 # The default value is: YES.
282 282
283 MARKDOWN_SUPPORT = YES 283 MARKDOWN_SUPPORT = YES
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "../pydir" \
754 "../tests_lit/lit.cfg" \
755 "../../llvm/utils/lit"
Jim Stichnoth 2016/01/20 18:25:52 What is the benefit of documenting the whole lit s
rkotlerimgtec 2016/01/20 20:35:07 The main reason is just so that we can see this co
Jim Stichnoth 2016/01/21 01:45:20 I see, thanks.
754 756
755 # This tag can be used to specify the character encoding of the source files 757 # This tag can be used to specify the character encoding of the source files
756 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 758 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
757 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv 759 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
758 # documentation (see: http://www.gnu.org/software/libiconv) for the list of 760 # documentation (see: http://www.gnu.org/software/libiconv) for the list of
759 # possible encodings. 761 # possible encodings.
760 # The default value is: UTF-8. 762 # The default value is: UTF-8.
761 763
762 INPUT_ENCODING = UTF-8 764 INPUT_ENCODING = UTF-8
763 765
764 # If the value of the INPUT tag contains directories, you can use the 766 # If the value of the INPUT tag contains directories, you can use the
765 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 767 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
766 # *.h) to filter out the source-files in the directories. If left blank the 768 # *.h) to filter out the source-files in the directories. If left blank the
767 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, 769 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii,
768 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, 770 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
769 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, 771 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,
770 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, 772 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf,
771 # *.qsf, *.as and *.js. 773 # *.qsf, *.as and *.js.
772 774
773 FILE_PATTERNS = 775 FILE_PATTERNS =
Jim Stichnoth 2016/01/20 18:25:52 revert this whitespace addition
rkotlerimgtec 2016/01/20 20:35:07 Done.
774 776
775 # The RECURSIVE tag can be used to specify whether or not subdirectories should 777 # The RECURSIVE tag can be used to specify whether or not subdirectories should
776 # be searched for input files as well. 778 # be searched for input files as well.
777 # The default value is: NO. 779 # The default value is: NO.
778 780
779 RECURSIVE = YES 781 RECURSIVE = YES
780 782
781 # The EXCLUDE tag can be used to specify files and/or directories that should be 783 # The EXCLUDE tag can be used to specify files and/or directories that should be
782 # excluded from the INPUT source files. This way you can easily exclude a 784 # excluded from the INPUT source files. This way you can easily exclude a
783 # subdirectory from a directory tree whose root is specified with the INPUT tag. 785 # subdirectory from a directory tree whose root is specified with the INPUT tag.
(...skipping 1542 matching lines...) Expand 10 before | Expand all | Expand 10 after
2326 2328
2327 CLANG_ASSISTED_PARSING = NO 2329 CLANG_ASSISTED_PARSING = NO
2328 2330
2329 CLANG_OPTIONS = "-std=c++11" \ 2331 CLANG_OPTIONS = "-std=c++11" \
2330 "-DALLOW_DUMP=1" \ 2332 "-DALLOW_DUMP=1" \
2331 "-DALLOW_LLVM_CL=1" \ 2333 "-DALLOW_LLVM_CL=1" \
2332 "-DALLOW_LLVM_IR=1" \ 2334 "-DALLOW_LLVM_IR=1" \
2333 "-DALLOW_LLVM_IR_AS_INPUT=1" \ 2335 "-DALLOW_LLVM_IR_AS_INPUT=1" \
2334 "-DALLOW_MINIMAL_BUILD=0" \ 2336 "-DALLOW_MINIMAL_BUILD=0" \
2335 "-DPNACL_BROWSER_TRANSLATOR=0" 2337 "-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