| OLD | NEW |
| 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 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 InTodoBlock { $0 = gensub(/ (TODO[ (:])/, \" @todo \\1\", \"g\", $0); } \ | 869 InTodoBlock { $0 = gensub(/ (TODO[ (:])/, \" @todo \\1\", \"g\", $0); } \ |
| 870 { print; }'" | 870 { print; }'" |
| 871 | 871 |
| 872 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern | 872 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern |
| 873 # basis. Doxygen will compare the file name with each pattern and apply the | 873 # basis. Doxygen will compare the file name with each pattern and apply the |
| 874 # filter if there is a match. The filters are a list of the form: pattern=filter | 874 # filter if there is a match. The filters are a list of the form: pattern=filter |
| 875 # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how | 875 # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how |
| 876 # filters are used. If the FILTER_PATTERNS tag is empty or if none of the | 876 # filters are used. If the FILTER_PATTERNS tag is empty or if none of the |
| 877 # patterns match the file name, INPUT_FILTER is applied. | 877 # patterns match the file name, INPUT_FILTER is applied. |
| 878 | 878 |
| 879 FILTER_PATTERNS = | 879 FILTER_PATTERNS = *.py=./py_filter |
| 880 | 880 |
| 881 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using | 881 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using |
| 882 # INPUT_FILTER ) will also be used to filter the input files that are used for | 882 # INPUT_FILTER ) will also be used to filter the input files that are used for |
| 883 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). | 883 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). |
| 884 # The default value is: NO. | 884 # The default value is: NO. |
| 885 | 885 |
| 886 FILTER_SOURCE_FILES = NO | 886 FILTER_SOURCE_FILES = NO |
| 887 | 887 |
| 888 # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file | 888 # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file |
| 889 # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and | 889 # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and |
| (...skipping 1438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2328 | 2328 |
| 2329 CLANG_ASSISTED_PARSING = NO | 2329 CLANG_ASSISTED_PARSING = NO |
| 2330 | 2330 |
| 2331 CLANG_OPTIONS = "-std=c++11" \ | 2331 CLANG_OPTIONS = "-std=c++11" \ |
| 2332 "-DALLOW_DUMP=1" \ | 2332 "-DALLOW_DUMP=1" \ |
| 2333 "-DALLOW_LLVM_CL=1" \ | 2333 "-DALLOW_LLVM_CL=1" \ |
| 2334 "-DALLOW_LLVM_IR=1" \ | 2334 "-DALLOW_LLVM_IR=1" \ |
| 2335 "-DALLOW_LLVM_IR_AS_INPUT=1" \ | 2335 "-DALLOW_LLVM_IR_AS_INPUT=1" \ |
| 2336 "-DALLOW_MINIMAL_BUILD=0" \ | 2336 "-DALLOW_MINIMAL_BUILD=0" \ |
| 2337 "-DPNACL_BROWSER_TRANSLATOR=0" | 2337 "-DPNACL_BROWSER_TRANSLATOR=0" |
| OLD | NEW |