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

Side by Side Diff: docs/Doxyfile

Issue 1562703002: move docs generation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: changes suggested by stichnot 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 | « Makefile.standalone ('k') | docs/Makefile.standalone » ('j') | 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo 51 # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo
52 # to the output directory. 52 # to the output directory.
53 53
54 PROJECT_LOGO = 54 PROJECT_LOGO =
55 55
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
57 # into which the generated documentation will be written. If a relative path is 57 # into which the generated documentation will be written. If a relative path is
58 # entered, it will be relative to the location where doxygen was started. If 58 # entered, it will be relative to the location where doxygen was started. If
59 # left blank the current directory will be used. 59 # left blank the current directory will be used.
60 60
61 OUTPUT_DIRECTORY = "docs" 61 OUTPUT_DIRECTORY = "../build/docs"
62 62
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
64 # directories (in 2 levels) under the output directory of each output format and 64 # directories (in 2 levels) under the output directory of each output format and
65 # will distribute the generated files over these directories. Enabling this 65 # will distribute the generated files over these directories. Enabling this
66 # option can be useful when feeding doxygen a huge amount of source files, where 66 # option can be useful when feeding doxygen a huge amount of source files, where
67 # putting all generated files in the same directory would otherwise causes 67 # putting all generated files in the same directory would otherwise causes
68 # performance problems for the file system. 68 # performance problems for the file system.
69 # The default value is: NO. 69 # The default value is: NO.
70 70
71 CREATE_SUBDIRS = NO 71 CREATE_SUBDIRS = NO
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 #--------------------------------------------------------------------------- 736 #---------------------------------------------------------------------------
737 # Configuration options related to the input files 737 # Configuration options related to the input files
738 #--------------------------------------------------------------------------- 738 #---------------------------------------------------------------------------
739 739
740 # The INPUT tag is used to specify the files and/or directories that contain 740 # The INPUT tag is used to specify the files and/or directories that contain
741 # documented source files. You may enter file names like myfile.cpp or 741 # documented source files. You may enter file names like myfile.cpp or
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 753
754 # This tag can be used to specify the character encoding of the source files 754 # 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 755 # 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 756 # 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 757 # documentation (see: http://www.gnu.org/software/libiconv) for the list of
758 # possible encodings. 758 # possible encodings.
759 # The default value is: UTF-8. 759 # The default value is: UTF-8.
760 760
761 INPUT_ENCODING = UTF-8 761 INPUT_ENCODING = UTF-8
762 762
(...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after
2325 2325
2326 CLANG_ASSISTED_PARSING = NO 2326 CLANG_ASSISTED_PARSING = NO
2327 2327
2328 CLANG_OPTIONS = "-std=c++11" \ 2328 CLANG_OPTIONS = "-std=c++11" \
2329 "-DALLOW_DUMP=1" \ 2329 "-DALLOW_DUMP=1" \
2330 "-DALLOW_LLVM_CL=1" \ 2330 "-DALLOW_LLVM_CL=1" \
2331 "-DALLOW_LLVM_IR=1" \ 2331 "-DALLOW_LLVM_IR=1" \
2332 "-DALLOW_LLVM_IR_AS_INPUT=1" \ 2332 "-DALLOW_LLVM_IR_AS_INPUT=1" \
2333 "-DALLOW_MINIMAL_BUILD=0" \ 2333 "-DALLOW_MINIMAL_BUILD=0" \
2334 "-DPNACL_BROWSER_TRANSLATOR=0" 2334 "-DPNACL_BROWSER_TRANSLATOR=0"
OLDNEW
« no previous file with comments | « Makefile.standalone ('k') | docs/Makefile.standalone » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698