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

Side by Side Diff: Doxyfile

Issue 1411123019: expand doxygen scope (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 1 month 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 #--------------------------------------------------------------------------- 391 #---------------------------------------------------------------------------
392 392
393 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 393 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
394 # documentation are documented, even if no documentation was available. Private 394 # documentation are documented, even if no documentation was available. Private
395 # class members and static file members will be hidden unless the 395 # class members and static file members will be hidden unless the
396 # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. 396 # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
397 # Note: This will also disable the warnings about undocumented members that are 397 # Note: This will also disable the warnings about undocumented members that are
398 # normally produced when WARNINGS is set to YES. 398 # normally produced when WARNINGS is set to YES.
399 # The default value is: NO. 399 # The default value is: NO.
400 400
401 EXTRACT_ALL = NO 401 EXTRACT_ALL = YES
402 402
403 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will 403 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will
404 # be included in the documentation. 404 # be included in the documentation.
405 # The default value is: NO. 405 # The default value is: NO.
406 406
407 EXTRACT_PRIVATE = NO 407 EXTRACT_PRIVATE = YES
408 408
409 # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal 409 # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal
410 # scope will be included in the documentation. 410 # scope will be included in the documentation.
411 # The default value is: NO. 411 # The default value is: NO.
412 412
413 EXTRACT_PACKAGE = NO 413 EXTRACT_PACKAGE = NO
414 414
415 # If the EXTRACT_STATIC tag is set to YES all static members of a file will be 415 # If the EXTRACT_STATIC tag is set to YES all static members of a file will be
416 # included in the documentation. 416 # included in the documentation.
417 # The default value is: NO. 417 # The default value is: NO.
418 418
419 EXTRACT_STATIC = NO 419 EXTRACT_STATIC = YES
420 420
421 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined 421 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined
422 # locally in source files will be included in the documentation. If set to NO 422 # locally in source files will be included in the documentation. If set to NO
423 # only classes defined in header files are included. Does not have any effect 423 # only classes defined in header files are included. Does not have any effect
424 # for Java sources. 424 # for Java sources.
425 # The default value is: YES. 425 # The default value is: YES.
426 426
427 EXTRACT_LOCAL_CLASSES = YES 427 EXTRACT_LOCAL_CLASSES = YES
428 428
429 # This flag is only useful for Objective-C code. When set to YES local methods, 429 # This flag is only useful for Objective-C code. When set to YES local methods,
(...skipping 1864 matching lines...) Expand 10 before | Expand all | Expand 10 after
2294 # This tag requires that the tag HAVE_DOT is set to YES. 2294 # This tag requires that the tag HAVE_DOT is set to YES.
2295 2295
2296 GENERATE_LEGEND = YES 2296 GENERATE_LEGEND = YES
2297 2297
2298 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot 2298 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot
2299 # files that are used to generate the various graphs. 2299 # files that are used to generate the various graphs.
2300 # The default value is: YES. 2300 # The default value is: YES.
2301 # This tag requires that the tag HAVE_DOT is set to YES. 2301 # This tag requires that the tag HAVE_DOT is set to YES.
2302 2302
2303 DOT_CLEANUP = YES 2303 DOT_CLEANUP = YES
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