| OLD | NEW |
| 1 # Doxyfile 1.7.2 | 1 # Doxyfile 1.7.2 |
| 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 hash (#) is considered a comment and will be ignored | 6 # All text after a hash (#) is considered a comment and will be ignored |
| 7 # The format is: | 7 # The format is: |
| 8 # TAG = value [value, ...] | 8 # TAG = value [value, ...] |
| 9 # For lists items can also be appended using: | 9 # For lists items can also be appended using: |
| 10 # TAG += value [value, ...] | 10 # TAG += value [value, ...] |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 # The RECURSIVE tag can be used to turn specify whether or not subdirectories | 615 # The RECURSIVE tag can be used to turn specify whether or not subdirectories |
| 616 # should be searched for input files as well. Possible values are YES and NO. | 616 # should be searched for input files as well. Possible values are YES and NO. |
| 617 # If left blank NO is used. | 617 # If left blank NO is used. |
| 618 | 618 |
| 619 RECURSIVE = NO | 619 RECURSIVE = NO |
| 620 | 620 |
| 621 # The EXCLUDE tag can be used to specify files and/or directories that should | 621 # The EXCLUDE tag can be used to specify files and/or directories that should |
| 622 # excluded from the INPUT source files. This way you can easily exclude a | 622 # excluded from the INPUT source files. This way you can easily exclude a |
| 623 # subdirectory from a directory tree whose root is specified with the INPUT tag. | 623 # subdirectory from a directory tree whose root is specified with the INPUT tag. |
| 624 | 624 |
| 625 EXCLUDE = ./ppapi/c/pp_macros.h | 625 EXCLUDE = ./pp_macros.h |
| 626 | 626 |
| 627 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or | 627 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or |
| 628 # directories that are symbolic links (a Unix filesystem feature) are excluded | 628 # directories that are symbolic links (a Unix filesystem feature) are excluded |
| 629 # from the input. | 629 # from the input. |
| 630 | 630 |
| 631 EXCLUDE_SYMLINKS = NO | 631 EXCLUDE_SYMLINKS = NO |
| 632 | 632 |
| 633 # If the value of the INPUT tag contains directories, you can use the | 633 # If the value of the INPUT tag contains directories, you can use the |
| 634 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude | 634 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude |
| 635 # certain files from those directories. Note that the wildcards are matched | 635 # certain files from those directories. Note that the wildcards are matched |
| (...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1660 # generate a legend page explaining the meaning of the various boxes and | 1660 # generate a legend page explaining the meaning of the various boxes and |
| 1661 # arrows in the dot generated graphs. | 1661 # arrows in the dot generated graphs. |
| 1662 | 1662 |
| 1663 GENERATE_LEGEND = YES | 1663 GENERATE_LEGEND = YES |
| 1664 | 1664 |
| 1665 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will | 1665 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will |
| 1666 # remove the intermediate dot files that are used to generate | 1666 # remove the intermediate dot files that are used to generate |
| 1667 # the various graphs. | 1667 # the various graphs. |
| 1668 | 1668 |
| 1669 DOT_CLEANUP = YES | 1669 DOT_CLEANUP = YES |
| OLD | NEW |